mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-21 06:39:09 -04:00
21 lines
420 B
YAML
21 lines
420 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: get_treefmt_version
|
|
run: treefmt --version
|
|
- name: get_nixfmt_version
|
|
run: nixfmt --version
|
|
- name: runs treefmt
|
|
run: treefmt --ci $( [ -n "$ACTIONS_RUNNER_DEBUG" ] && echo -vv )
|