4 Commits

Author SHA1 Message Date
b98fd1352a add rustfmt
Some checks failed
checks / format (push) Failing after 2s
checks / format (pull_request) Failing after 2s
2023-10-21 01:39:23 -07:00
a27214c8da Revert "test"
This reverts commit 81158ca818.
2023-10-21 01:39:23 -07:00
b53c875eac test 2023-10-21 01:39:23 -07:00
0e92eda123 add automated format check 2023-10-21 01:39:23 -07:00

View File

@ -0,0 +1,16 @@
name: checks
on:
- push
- pull_request
jobs:
lint:
runs_on: "alpine_amd64"
container:
image: "rust:1.73-alpine3.18"
name: format
steps:
- name: TODO put in image base
run: rustup component add rustfmt
- name: rustfmt
run: cargo fmt --check