Skip to content

Cleanup

Cleanup #1

Workflow file for this run

name: Rust CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
rust-check:
name: Rust Linting and Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy -- -D warnings