Bump reqwest from 0.11.18 to 0.11.25 #135
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
name: test | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: | |
- master | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 | |
CARGO_NET_RETRY: 10 | |
RUSTUP_MAX_RETRIES: 10 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Compile | |
run: cargo test --workspace --no-run --locked | |
- name: Run format | |
run: cargo fmt --all -- --check | |
- name: Run clippy | |
run: cargo clippy --workspace -- -D warnings | |
- name: Run tests | |
run: cargo test --workspace -- --nocapture --quiet |