mirror of
https://github.com/danbulant/cushy
synced 2026-07-05 11:10:34 +00:00
Attempting to add Windows CI
This commit is contained in:
parent
4d94bccfa6
commit
912d5566bc
1 changed files with 12 additions and 0 deletions
12
.github/workflows/rust.yml
vendored
12
.github/workflows/rust.yml
vendored
|
|
@ -44,3 +44,15 @@ jobs:
|
||||||
- name: Run default features unit tests
|
- name: Run default features unit tests
|
||||||
run: |
|
run: |
|
||||||
cargo test --all-features --all-targets
|
cargo test --all-features --all-targets
|
||||||
|
|
||||||
|
test-windows:
|
||||||
|
name: Test on MSRV
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
|
|
||||||
|
- name: Run default features unit tests
|
||||||
|
run: |
|
||||||
|
cargo test --all-features --all-targets
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue