build(deps): update rust crate ureq to 2.9.4 #1392
Workflow file for this run
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: Main workflow | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_NET_RETRY: 10 | |
RUST_BACKTRACE: short | |
RUSTFLAGS: "-D warnings" | |
RUSTUP_MAX_RETRIES: 10 | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: Swatinem/rust-cache@v2.7.3 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: llvm-tools-preview | |
- name: Run cargo check | |
run: cargo check | |
- name: Install additional tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-llvm-cov@0.5.0,cargo-nextest@0.9.42 | |
- name: Generate code coverage | |
run: cargo llvm-cov nextest --all-features --workspace --lcov --output-path lcov.info | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: lcov.info | |
lints: | |
name: Lints | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: Swatinem/rust-cache@v2.7.3 | |
- name: Install nightly toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
- name: Run cargo fmt | |
run: cargo fmt --all | |
- name: Report fmt changes | |
uses: reviewdog/action-suggester@v1 | |
with: | |
tool_name: cargo fmt | |
level: error | |
fail_on_error: 'true' | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run clippy | |
uses: giraffate/clippy-action@v1 | |
with: | |
clippy_flags: -- -Dwarnings | |
fail_on_error: 'true' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |