Skip to content

chore(deps): bump anyhow from 1.0.72 to 1.0.74 #34

chore(deps): bump anyhow from 1.0.72 to 1.0.74

chore(deps): bump anyhow from 1.0.72 to 1.0.74 #34

Workflow file for this run

name: Branches
on:
pull_request:
types: [opened, reopened, synchronize]
branches-ignore:
- "release-please-*"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
name: installing toolchain
with:
profile: default
toolchain: stable
override: true
components: rustfmt, clippy
- name: Rust Cache
uses: Swatinem/rust-cache@v2.5.1
- uses: actions-rs/cargo@v1
name: fmt
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
name: clippy
with:
command: clippy
args: --release -- -D warnings
- uses: actions-rs/cargo@v1
name: build
with:
command: build
args: --release