4 Commits

Author SHA1 Message Date
ab9aed00ab add rustfmt
Some checks failed
checks / format (push) Failing after 3s
checks / format (pull_request) Failing after 2s
2023-10-21 01:34:57 -07:00
e410731e99 Revert "test"
Some checks failed
checks / format (push) Failing after 2s
checks / format (pull_request) Failing after 3s
This reverts commit 81158ca818.
2023-10-21 01:28:34 -07:00
81158ca818 test
Some checks failed
checks / format (push) Failing after 2s
checks / format (pull_request) Failing after 3s
2023-10-21 01:26:51 -07:00
4be42a6cbe add automated format check
Some checks failed
checks / format (push) Failing after 19s
checks / format (pull_request) Failing after 3s
2023-10-21 01:15:35 -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