-
Notifications
You must be signed in to change notification settings - Fork 95
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
2 changed files
with
35 additions
and
15 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: CI | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
rustfmt: | ||
name: rustfmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install rust | ||
run: rustup update --no-self-update stable && rustup default stable | ||
- name: Check formatting | ||
run: cargo fmt -- --check | ||
|
||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- rust: stable | ||
- rust: beta | ||
- rust: nightly | ||
- rust: 1.40.0 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install rust | ||
run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} | ||
- name: Run tests | ||
run: | | ||
cargo build --verbose | ||
cargo build --verbose --no-default-features | ||
cargo test --verbose | ||
cargo test --verbose --no-default-features | ||
cargo test --verbose --all-features |
This file was deleted.
Oops, something went wrong.