style: nixpkgs-fmt -> nixfmt #354
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [main] | |
paths: | |
- '.sources/**' | |
- '**.lock' | |
- '**.nix' | |
pull_request: | |
paths: | |
- '.sources/**' | |
- '**.lock' | |
- '**.nix' | |
workflow_dispatch: | |
jobs: | |
format: | |
name: Format Nix files | |
runs-on: ubuntu-latest | |
permissions: | |
# yes, this goes unused on `main` | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Get short revision | |
id: rev | |
run: | |
echo "rev=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" | |
- name: Install Nix | |
uses: cachix/install-nix-action@x27 | |
- name: Format changes | |
run: | | |
nix run \ | |
--inputs-from ./dev \ | |
'nixpkgs#nixfmt-rfc-style' -- . | |
- name: Commit changes | |
env: | |
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN || github.token }} | |
uses: planetscale/ghcommit-action@v0 | |
with: | |
commit_message: "style: format ${{ steps.rev.outputs.rev }}" | |
repo: "${{ github.repository }}" | |
branch: "${{ github.head_ref || github.ref_name }}" | |
vm: | |
name: Test Modules | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test: [unstable, stable] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@V27 | |
- name: Setup cache | |
uses: DeterminateSystems/magic-nix-cache-action@v6 | |
- name: Run VM | |
env: | |
TEST: ${{ matrix.test }} | |
run: | | |
nix build \ | |
--print-build-logs \ | |
--show-trace \ | |
"./dev#checks.x86_64-linux.module-test-$TEST" |