Skip to content

Bump reqwest from 0.13.2 to 0.13.3 #835

Bump reqwest from 0.13.2 to 0.13.3

Bump reqwest from 0.13.2 to 0.13.3 #835

Workflow file for this run

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v6
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
component: clippy, rustfmt
- name: Check formatting
run: cargo fmt -- --check
- name: Check for warnings
run: cargo clippy -- -D warnings
- name: Build project
run: cargo build
- name: Run tests
run: cargo test