mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-21 06:39:09 -04:00
17 lines
300 B
YAML
17 lines
300 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 $( [ "${ACTIONS_RUNNER_DEBUG:-0}" = "1" ] && echo -vv )
|