Skip to content

chore(deps): Bump anyhow from 1.0.87 to 1.0.89 #463

chore(deps): Bump anyhow from 1.0.87 to 1.0.89

chore(deps): Bump anyhow from 1.0.87 to 1.0.89 #463

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Test
run: cargo test
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy, rustfmt
override: true
- name: Clippy
run: cargo clippy -- -D warnings
- name: Format
run: cargo fmt --check