71eb65bea3
Bumps [DeterminateSystems/magic-nix-cache-action](https://github.com/determinatesystems/magic-nix-cache-action) from 2 to 3. - [Release notes](https://github.com/determinatesystems/magic-nix-cache-action/releases) - [Commits](https://github.com/determinatesystems/magic-nix-cache-action/compare/v2...v3) --- updated-dependencies: - dependency-name: DeterminateSystems/magic-nix-cache-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
51 lines
955 B
YAML
51 lines
955 B
YAML
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
|
|
uses: cachix/install-nix-action@v25
|
|
|
|
- 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
|
|
uses: cachix/install-nix-action@v25
|
|
|
|
- name: Setup cache
|
|
uses: DeterminateSystems/magic-nix-cache-action@v3
|
|
|
|
- name: Run VM
|
|
run: |
|
|
nix build -L --show-trace ./dev#checks.x86_64-linux.module-vm-test
|