add automated format check
checks / format (push) Failing after 19s Details
checks / format (pull_request) Failing after 3s Details

This commit is contained in:
cascode 2023-10-21 01:15:35 -07:00
parent e93736be61
commit 4be42a6cbe
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
name: checks
on:
- push
- pull_request
jobs:
lint:
runs_on: "alpine_amd64"
container:
image: "rust:1.73-alpine3.18"
name: format
steps:
- name: rustfmt
run: cargo fmt --check