Bump reqwest from 0.13.1 to 0.13.2 #139
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
| name: unit tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - '**/*.rs' | |
| - 'Cargo.lock' | |
| pull_request: | |
| paths: | |
| - '**/*.rs' | |
| - 'Cargo.lock' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: stable | |
| - uses: taiki-e/install-action@nextest | |
| - name: Test | |
| run: cargo nextest run --config-file .cargo/nextest.toml --profile ci | |
| # - name: Install cargo-careful | |
| # run: cargo install cargo-careful | |
| # - name: Run cargo-careful | |
| # run: cargo +nightly careful test --target x86_64-unknown-linux-gnu |