Skip to content

Commit

Permalink
chore(ci): add 1.75, test asynch and use nightly for linting and check
Browse files Browse the repository at this point in the history
Signed-off-by: Lachezar Lechev <[email protected]>
  • Loading branch information
elpiel committed Jan 22, 2024
1 parent 9a0c4f5 commit 15b8201
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
name: Lints and checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy

Expand All @@ -35,14 +35,17 @@ jobs:
- beta
- nightly
- 1.65 # MSRV
- 1.75 # `async_fn_in_trait` + `impl_trait_projections` stabilised

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}

- run: cargo build
- run: cargo test
- run: cargo build -F asynch
- run: cargo test -F asynch

0 comments on commit 15b8201

Please sign in to comment.