Skip to content

chore(deps): bump reqwest from 0.11.27 to 0.12.12 #68

chore(deps): bump reqwest from 0.11.27 to 0.12.12

chore(deps): bump reqwest from 0.11.27 to 0.12.12 #68

Workflow file for this run

name: Rust Linter and Formatter
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test