Flake info push #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nix Flake Check | |
on: [push, pull_request] | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Install Nix Linting and Formatting Tools | |
run: nix-env -i statix nixpkgs-fmt -f '<nixpkgs>' | |
- name: Flake update | |
run: nix flake update | |
- name: Run Statix Lint | |
run: statix fix | |
- name: Run Nix Format | |
run: nixpkgs-fmt . | |
- name: Nix Flake Checker | |
# You may pin to the exact commit or the version. | |
# uses: DeterminateSystems/flake-checker-action@4b90f9fc724969ff153fe1803460917c84fe00a3 | |
uses: DeterminateSystems/flake-checker-action@v5 | |
- name: Commit | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Auto lint/format | |