-
Notifications
You must be signed in to change notification settings - Fork 14
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
Showing
3 changed files
with
53 additions
and
164 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,53 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
name: Test Suite | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
- name: Run cargo test | ||
run: cargo test | ||
|
||
test-msrv: | ||
name: Test Suite | ||
runs-on: [ubuntu-latest, windows-latest] | ||
strategy: | ||
matrix: | ||
rust: | ||
- 1.65.0 | ||
- stable | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
- name: Run cargo test | ||
# Exclude doctests here, as we don't want to clutter docs themselves | ||
# with backwards compatibility workarounds. | ||
run: cargo test --lib | ||
|
||
style: | ||
name: lints and formatting | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: 1.65.0 # pin a version for reproducible results | ||
components: rustfmt | ||
- name: Check warnings | ||
run: RUSTFLAGS="-D warnings" cargo check --all-targets | ||
- name: Check formatting | ||
run: cargo fmt -- --check |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.