Bump toml from 1.1.0+spec-1.1.0 to 1.1.1+spec-1.1.0 (#201) #490
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: Rust | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/rust.yml" | |
| - "**.rs" | |
| - "Cargo.lock" | |
| - "Cargo.toml" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/rust.yml" | |
| - "**.rs" | |
| - "Cargo.lock" | |
| - "Cargo.toml" | |
| # Cancel previous runs for PRs but not pushes to main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out source repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: rustfmt, clippy | |
| - name: Set up cargo cache | |
| uses: actions/cache@v5 | |
| continue-on-error: false | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: ${{ runner.os }}-cargo- | |
| - name: Build | |
| run: cargo build | |
| - name: Test | |
| run: cargo test --no-fail-fast | |
| - name: Lint | |
| # exit non-zero if there are any warnings | |
| # https://doc.rust-lang.org/stable/clippy/usage.html | |
| run: cargo clippy -- -Dwarnings | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out source repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: rustfmt, clippy | |
| - name: Format | |
| run: cargo fmt --check --verbose |