Skip to content

Commit

Permalink
Clippy and Fmt enforcement
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeMasen committed Jun 11, 2023
1 parent 5a505b9 commit 56d12bc
Show file tree
Hide file tree
Showing 13 changed files with 1,470 additions and 1,245 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Rust

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: fmt check
run: cargo fmt --check
- name: clippy
run: cargo clippy -- -Dwarnings
- name: Build
run: cargo build

Loading

0 comments on commit 56d12bc

Please sign in to comment.