27 lines
672 B
YAML
27 lines
672 B
YAML
name: check
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
push:
|
|
branches:
|
|
- master
|
|
- update_flake_lock_action
|
|
|
|
jobs:
|
|
check:
|
|
if: ${{ false }} // Temporarily disabled
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: cachix/install-nix-action@v18
|
|
with:
|
|
extra_nix_config: |
|
|
accept-flake-config = true
|
|
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: aciceri-fleet
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
- run: nix --print-build-logs --verbose flake check --allow-import-from-derivation --keep-going
|