We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca95c2d commit 0def9dbCopy full SHA for 0def9db
.github/workflows/ci_linux.yaml
@@ -16,12 +16,18 @@ env:
16
17
jobs:
18
build:
19
+ strategy:
20
+ matrix:
21
+ rust-version: [stable, 1.75]
22
23
runs-on: ubuntu-latest
24
25
steps:
26
- uses: actions/checkout@v3
27
28
+ - name: Setup rust
29
+ run: rustup default ${{ matrix.rust-version }}
30
+
31
- name: Build default features
32
run: cargo build
33
- name: Test default features
@@ -32,10 +38,3 @@ jobs:
38
- name: Test single_threaded_async
39
run: cargo test --features single_threaded_async
34
40
35
- # Build and test with 1.75
36
- - name: Install Rust 1.75
37
- run: rustup default 1.75
- - name: Build default features with Rust 1.75
- run: cargo build
- - name: Test default features with Rust 1.75
41
- run: cargo test
0 commit comments