fix(ci): use lix in github actions #40
1 changed files with 24 additions and 15 deletions
23
.github/workflows/check.yml
vendored
23
.github/workflows/check.yml
vendored
|
@ -12,31 +12,40 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/lix-project/lix:latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- 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
|
- uses: DeterminateSystems/magic-nix-cache-action@v7
|
||||||
- name: Run `nix flake check`
|
- name: Run `nix flake check`
|
||||||
run: |
|
run: |
|
||||||
nix flake check
|
nix flake check --verbose --keep-going
|
||||||
nix run nixpkgs#statix -- check .
|
nix run nixpkgs#statix -- check .
|
||||||
lockfile:
|
lockfile:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/lix-project/lix:latest
|
||||||
needs: check
|
needs: check
|
||||||
if: ${{ github.event_name == 'schedule' }} # only run when scheduled
|
if: ${{ github.event_name == 'schedule' }} # only run when scheduled
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- 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
|
- uses: DeterminateSystems/update-flake-lock@v23
|
||||||
- name: Run `nix flake check`
|
- name: Run `nix flake check`
|
||||||
run: nix flake check
|
run: nix flake check --verbose --keep-going
|
||||||
build-documentation:
|
build-documentation:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ghcr.io/lix-project/lix:latest
|
||||||
if: ${{ github.event_name != 'schedule' }} # only run when not scheduled
|
if: ${{ github.event_name != 'schedule' }} # only run when not scheduled
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- 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
|
- uses: DeterminateSystems/magic-nix-cache-action@v7
|
||||||
- name: Build documentation
|
- name: Build documentation
|
||||||
run: nix build .#docs --print-build-logs
|
run: nix build .#docs --print-build-logs
|
||||||
|
|
Loading…
Reference in a new issue