Skip to content

Commit

Permalink
Add preliminary windows test for building
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 6, 2020
1 parent 0e760d7 commit d0c362a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,24 @@ jobs:
cargo diet -n --package-size-limit 30KB
build-and-test-on-windows:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: stable
override: true
- name: "Check (crossterm)"
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --tests --examples
- name: "Test (crossterm)"
uses: actions-rs/cargo@v1
with:
command: test
args: --all

0 comments on commit d0c362a

Please sign in to comment.