-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: format nix file changes on push * style: nixpkgs-fmt -> nixfmt follows nixos RFC 166. closes #127 * ci: move validate-sources to ci * ci: deploy.yml -> website.yml
- Loading branch information
Showing
4 changed files
with
45 additions
and
39 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,32 +16,68 @@ on: | |
|
||
jobs: | ||
format: | ||
name: Check formatting | ||
name: Format Nix files | ||
|
||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- 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@V27 | ||
uses: cachix/install-nix-action@v27 | ||
|
||
- name: Run formatter | ||
- name: Format changes | ||
run: | | ||
nix run --inputs-from ./dev nixpkgs#nixpkgs-fmt -- . | ||
nix run \ | ||
--inputs-from ./dev \ | ||
'nixpkgs#nixfmt-rfc-style' -- . | ||
- name: Commit changes | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }} | ||
uses: planetscale/[email protected] | ||
with: | ||
commit_message: "style: format ${{ steps.rev.outputs.rev }}" | ||
repo: "${{ github.repository }}" | ||
branch: "${{ github.head_ref || github.ref_name }}" | ||
|
||
validate-sources: | ||
name: Validate sources | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Nix | ||
uses: cachix/install-nix-action@V27 | ||
|
||
- name: Check for changes | ||
run: git diff --color=always --exit-code | ||
- name: Check for external repositories | ||
run: | | ||
set -e | ||
nix eval --file ./.github/checkSources.nix | ||
vm: | ||
name: Test Modules | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
test: [unstable, stable] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Nix | ||
uses: cachix/install-nix-action@V27 | ||
|
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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