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 919292f commit d0fbdabCopy full SHA for d0fbdab
.github/workflows/rust.yml
@@ -11,11 +11,22 @@ env:
11
12
jobs:
13
build:
14
-
15
- runs-on: ubuntu-latest
+ name: Build and test
+ runs-on: ${{ matrix.os }}
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ os: [ubuntu-latest, windows-latest, macos-latest]
20
+ rust: [stable]
21
22
steps:
23
- uses: actions/checkout@v4
24
+ - name: Setup Rust
25
+ uses: actions-rs/toolchain@v1
26
+ with:
27
+ profile: minimal
28
+ toolchain: ${{ matrix.rust }}
29
+ override: true
30
- name: Build
31
run: cargo build --verbose
32
- name: Run tests
0 commit comments