Skip to content

Commit 0670239

Browse files
author
Andreas Auernhammer
authored
Fix Github Actions CI
1 parent 8738d79 commit 0670239

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/rust.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
os: [ubuntu-latest, windows-latest, macos-latest]
17+
os: [ubuntu-latest, windows-latest, macOS-latest]
18+
rust: [stable]
1819

1920
steps:
2021
- uses: actions/checkout@v1
21-
- name: Build on ${{ matrix.os }}
22-
run: cargo build --verbose
23-
- name: Test on ${{ matrix.os }}
22+
with:
23+
rust-version: ${{ matrix.rust }}
24+
- name: Run tests
2425
run: cargo test --verbose

0 commit comments

Comments
 (0)