fix(ci): use lix in github actions
All checks were successful
/ check (push) Successful in 23s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 1s
/ build (nvim) (push) Successful in 11s
/ update-lockfile (push) Has been skipped

This commit is contained in:
Jalil David Salamé Messina 2024-07-29 09:52:42 +02:00
parent 88396cecf3
commit 6174984859
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -12,31 +12,40 @@ on:
jobs:
check:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container:
image: ghcr.io/lix-project/lix:latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v12
- name: Enable flakes
run: echo 'experimental-features = nix-command flakes' >> ~/.config/nix/nix.conf
- uses: DeterminateSystems/magic-nix-cache-action@v7
- name: Run `nix flake check`
run: |
nix flake check
nix flake check --verbose --keep-going
nix run nixpkgs#statix -- check .
lockfile:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container:
image: ghcr.io/lix-project/lix:latest
needs: check
if: ${{ github.event_name == 'schedule' }} # only run when scheduled
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v12
- name: Enable flakes
run: echo 'experimental-features = nix-command flakes' >> ~/.config/nix/nix.conf
- uses: DeterminateSystems/update-flake-lock@v23
- name: Run `nix flake check`
run: nix flake check
run: nix flake check --verbose --keep-going
build-documentation:
runs-on: ubuntu-latest
container:
image: ghcr.io/lix-project/lix:latest
if: ${{ github.event_name != 'schedule' }} # only run when not scheduled
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v12
- name: Enable flakes
run: echo 'experimental-features = nix-command flakes' >> ~/.config/nix/nix.conf
- uses: DeterminateSystems/magic-nix-cache-action@v7
- name: Build documentation
run: nix build .#docs --print-build-logs