nix-config/.gitea/workflows/check-flake.yaml
Zuckerberg 25dba0ee19
Some checks failed
Check Flake / check-flake (push) Failing after 1s
Use custom action
2024-06-16 20:54:47 -06:00

28 lines
640 B
YAML

name: Check Flake
on: [push]
env:
DEBIAN_FRONTEND: noninteractive
PATH: /run/current-system/sw/bin/
jobs:
check-flake:
runs-on: nixos
steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: attic -V
- name: Setup Attic Cache
uses: zuckerberg/attic-action@latest
with:
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
cache: ${{ secrets.ATTIC_CACHE }}
token: ${{ secrets.ATTIC_TOKEN }}
- name: Check Flake
run: nix flake check --all-systems --print-build-logs --log-format raw --show-trace