rose-pine-nix/.github/workflows/ci.yml

19 lines
375 B
YAML
Raw Normal View History

name: CI
on:
- push
- pull_request
jobs:
Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v20
with:
2023-06-02 12:36:11 -07:00
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Run formatter
2023-06-02 12:36:11 -07:00
run: nix fmt
- name: Check for changes
run: git diff --color=always --exit-code