jwt-authorizer/.github/workflows/ci.yml
cduvray fc82bea5f4 build: disable temporarily nightly tests
-  to avoid "error[E0635]: unknown feature `proc_macro_span_shrink`" when testing with nightly
2023-07-06 07:32:07 +02:00

64 lines
1.3 KiB
YAML

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
style:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check format
run: cargo fmt --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [pinned, stable]
include:
- build: pinned
os: ubuntu-22.04
rust: 1.65.0
- build: stable
os: ubuntu-22.04
rust: stable
# - build: nightly
# os: ubuntu-22.04
# rust: nightly
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Build System Info
run: rustc --version
- name: Run tests default features
run: cargo test
- name: Run tests all features
run: cargo test --all-features
- name: Run tests no features
run: cargo test --no-default-features