Skip to content

Commit a254e46

Browse files
committed
update ci.yml
1 parent 92c9afe commit a254e46

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Diff for: .github/workflows/ci.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
os: [ubuntu-latest, windows-latest]
10-
rust: [stable]
9+
os: [ubuntu-latest, windows-latest, macOS-latest]
10+
rust: [stable, nightly]
1111

1212
steps:
13-
- uses: actions/checkout@v1
14-
- name: Build
15-
run: cargo build --verbose
13+
- uses: hecrj/setup-rust-action@v1
14+
with:
15+
rust-version: ${{ matrix.rust }}
16+
- uses: actions/checkout@master
1617
- name: Run tests
1718
run: cargo test --verbose

0 commit comments

Comments
 (0)