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