nixfiles/.gitea/workflows/ci.yaml
Jack O'Sullivan bc8fbcf85a
Some checks failed
CI / Check Nix flake (push) Failing after 29s
Overwrite runner arch for magic Nix cache
2023-11-16 23:50:17 +00:00

24 lines
510 B
YAML

name: CI
on:
push:
branches: [master]
jobs:
check:
name: Check Nix flake
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- uses: DeterminateSystems/magic-nix-cache-action@main
env:
RUNNER_ARCH: X64
- name: Write agenix secrets key to file
env:
KEY: ${{ secrets.AGENIX_SECRETS_KEY }}
run: printf "$KEY" > .keys/ci.key
- name: Check flake
run: nix flake check