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 8738d79 commit 0670239Copy full SHA for 0670239
.github/workflows/rust.yml
@@ -14,11 +14,12 @@ jobs:
14
runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
- os: [ubuntu-latest, windows-latest, macos-latest]
+ os: [ubuntu-latest, windows-latest, macOS-latest]
18
+ rust: [stable]
19
20
steps:
21
- uses: actions/checkout@v1
- - name: Build on ${{ matrix.os }}
22
- run: cargo build --verbose
23
- - name: Test on ${{ matrix.os }}
+ with:
+ rust-version: ${{ matrix.rust }}
24
+ - name: Run tests
25
run: cargo test --verbose
0 commit comments