Skip to content

Commit

Permalink
run ci also on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Nov 1, 2023
1 parent 3083da8 commit 3b28de7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@ on:
- pull_request

jobs:
test:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test
- run: cargo doc
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test
- run: cargo doc

0 comments on commit 3b28de7

Please sign in to comment.