Skip to content

Update reqwest requirement from 0.11.22 to 0.12.3 #180

Update reqwest requirement from 0.11.22 to 0.12.3

Update reqwest requirement from 0.11.22 to 0.12.3 #180

Workflow file for this run

name: Rust CI
on:
push:
branches: ["main"]
tags: ["v*"]
pull_request:
types: [opened, synchronize, reopened]
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt
- run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy
- run: cargo clippy --workspace --tests --all-features -- -D warnings
test:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
- uses: taiki-e/install-action@v2
with:
tool: nextest
- run: cargo nextest run --all-features --profile ci
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- run: cargo doc --all-features --no-deps
deploy-crates-io:
name: Release on crates.io
needs:
- rustfmt
- clippy
- test
- doc
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo publish -p grillon --token ${{ secrets.CRATES_IO }}