-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abe0ff8
commit fef24f9
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: test-suite | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- 'pr/*' | ||
pull_request: | ||
env: | ||
# Deny warnings in CI | ||
RUSTFLAGS: "-D warnings" | ||
jobs: | ||
cargo-fmt: | ||
name: cargo-fmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Get latest version of stable Rust | ||
run: rustup update stable | ||
- name: Check formatting with cargo fmt | ||
run: cargo fmt --all -- --check | ||
test: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
name: test-${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Get latest version of stable Rust | ||
run: rustup update stable | ||
- name: Run tests | ||
run: cargo test --release | ||
- name: Check all examples, binaries, etc | ||
run: cargo check --all-targets |