2024-01-11 13:47:25 -08:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
|
|
|
- '**.lock'
|
|
|
|
- '**.nix'
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
format:
|
|
|
|
name: Check formatting
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Install Nix
|
2024-03-13 15:08:35 -07:00
|
|
|
uses: cachix/install-nix-action@v26
|
2024-01-11 13:47:25 -08:00
|
|
|
|
|
|
|
- name: Run formatter
|
|
|
|
run: |
|
|
|
|
nix run --inputs-from ./dev nixpkgs#nixpkgs-fmt -- .
|
|
|
|
|
|
|
|
- name: Check for changes
|
|
|
|
run: git diff --color=always --exit-code
|
|
|
|
|
|
|
|
vm:
|
|
|
|
name: Test Modules
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Install Nix
|
2024-03-13 15:08:35 -07:00
|
|
|
uses: cachix/install-nix-action@v26
|
2024-01-11 13:47:25 -08:00
|
|
|
|
|
|
|
- name: Setup cache
|
2024-03-13 15:08:18 -07:00
|
|
|
uses: DeterminateSystems/magic-nix-cache-action@v3
|
2024-01-11 13:47:25 -08:00
|
|
|
|
|
|
|
- name: Run VM
|
|
|
|
run: |
|
|
|
|
nix build -L --show-trace ./dev#checks.x86_64-linux.module-vm-test
|