Skip to content

Update governor requirement from 0.7.0 to 0.8.0 #110

Update governor requirement from 0.7.0 to 0.8.0

Update governor requirement from 0.7.0 to 0.8.0 #110

Workflow file for this run

name: Lint
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use cached dependencies
uses: Swatinem/rust-cache@v2
with:
key: "ubuntu-22.04-x86_64-unknown-linux-gnu"
- name: Install clippy and rustfmt
run: |
rustup component add clippy
rustup component add rustfmt
- name: Run clippy
run: cargo clippy --all-features -- -Dwarnings
- name: Run fmt
run: cargo fmt --check