Skip to content

1.2.0

1.2.0 #32

Workflow file for this run

name: "Lint/FMT"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install Clippy
run: rustup component add clippy
- name: Run Clippy Check
run: cargo clippy -- -D warnings
- name: Run Format Check
run: cargo fmt -- --check