Update README.md #180
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
| name: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| toolchain: [stable, nightly] | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| # Only test nightly on Linux | |
| exclude: | |
| - os: macos-latest | |
| toolchain: nightly | |
| - os: windows-latest | |
| toolchain: nightly | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: swatinem/rust-cache@v2 | |
| - name: fetch Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - name: toolchain version | |
| run: cargo -vV | |
| - uses: giraffate/clippy-action@v1 | |
| with: | |
| reporter: "github-pr-review" | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| clippy_flags: -- -Dwarnings | |
| - name: build | |
| run: cargo build --all --verbose | |
| - name: test | |
| run: cargo test --all --verbose | |
| #check-unused-dependencies: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - uses: actions/cache@v3 | |
| # with: | |
| # path: | | |
| # ~/.cargo/bin/ | |
| # ~/.cargo/registry/index/ | |
| # ~/.cargo/registry/cache/ | |
| # ~/.cargo/git/db/ | |
| # target/ | |
| # key: ${{ runner.os }}-cargo-check-unused-dependencies-${{ hashFiles('**/Cargo.toml') }} | |
| # - uses: actions-rs/toolchain@v1 | |
| # with: | |
| # toolchain: nightly | |
| # override: true | |
| # - name: Installs cargo-udeps | |
| # run: cargo install --force cargo-udeps | |
| # - name: Run cargo udeps | |
| # run: cargo udeps | |
| miri: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: swatinem/rust-cache@v2 | |
| - name: fetch Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| components: miri | |
| - name: Test with Miri | |
| run: | | |
| cargo +nightly miri setup && MIRIFLAGS="-Zmiri-tree-borrows -Zmiri-ignore-leaks" cargo +nightly miri test |