mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-21 14:49:10 -04:00
17 lines
295 B
YAML
17 lines
295 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" = "1" ] && echo -vv )
|