Skip to content

ci: Add aarch64-linux to extra-platforms #31

ci: Add aarch64-linux to extra-platforms

ci: Add aarch64-linux to extra-platforms #31

Workflow file for this run

name: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: nix flake check
runs-on: ubuntu-latest
with:

Check failure on line 13 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 13, Col: 5): Unexpected value 'with'
extra_nix_config: "extra-platforms = aarch64-linux"
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- run: nix flake check
format:
name: nix fmt -- --check **/*.nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- run: nix fmt -- --check **/*.nix
example:
name: nix flake check ./example
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
- run: cp ./hardware/laptop.nix ./example/hardware-configuration.nix
- run: git add .
- run: nix flake check ./example --no-write-lock-file --override-input nix-config "git+file://$(pwd | sed -e 's/\s/%20/g')?shallow=1"