Note that "super" is often emitted as Meta on Linux
#107
Workflow file for this run
This file contains hidden or 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
| on: [push, pull_request] | |
| name: Continuous integration | |
| jobs: | |
| check-test: | |
| name: Check and test crate | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| - "1.61" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| # Default features | |
| - run: cargo check --all-targets | |
| - run: cargo test | |
| # No default features | |
| - run: cargo check --all-targets --no-default-features | |
| - run: cargo test --no-default-features | |
| clippy-fmt: | |
| name: Run Clippy and format code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy, rustfmt | |
| - run: cargo clippy --all-targets -- -D warnings | |
| - run: cargo fmt --check |