Skip to content

Commit

Permalink
Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Nov 11, 2023
1 parent 6a5eec8 commit 49e8acf
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: CI Linux

on:
push:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI Windows

on:
push:
branches: [main]
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0

jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.70.0
profile: minimal
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- run: make test
- run: make fix
- run: git diff HEAD --exit-code --color

0 comments on commit 49e8acf

Please sign in to comment.