Skip to content

Revert 1 commits

Revert 1 commits #13

Workflow file for this run

name: basic sanity checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check format
run: cargo fmt --check --verbose
- name: clippy check
run: cargo clippy --verbose