mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
16 lines
245 B
YAML
16 lines
245 B
YAML
name: treefmt
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
treefmt:
|
|
name: nix fmt
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: runs treefmt
|
|
run: "treefmt --ci"
|