chore(deps): update rust crate reqwest to 0.12.4 #237
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: Tests (nostd) | |
jobs: | |
test-nofeatures: | |
name: ${{matrix.rust}} on ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
rust: [1.74.1, stable] | |
os: [ubuntu-20.04] | |
env: | |
RUSTFLAGS: '' | |
CARGO_PROFILE_DEV_DEBUG: '0' # reduce size of target directory | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Toolchain | |
run: rustup default ${{matrix.rust}} | |
- name: Check | |
run: cargo check --no-default-features --all-targets | |
- name: Test | |
run: cargo test --release --no-default-features |