Skip to content

chore: migrate to Nix-based development and CI workflows [ENG-11657] #8

chore: migrate to Nix-based development and CI workflows [ENG-11657]

chore: migrate to Nix-based development and CI workflows [ENG-11657] #8

Workflow file for this run

name: 'CI: Flake check'
on:
push:
paths:
- 'flake.nix'
- 'flake.lock'
- '.github/workflows/nix-flake.yml'
- '.github/actions/setup-nix/**'
pull_request:
paths:
- 'flake.nix'
- 'flake.lock'
- '.github/workflows/nix-flake.yml'
- '.github/actions/setup-nix/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# Check flake syntax and structure
flake-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Nix
uses: ./.github/actions/setup-nix
- name: Check flake
run: nix flake check --all-systems --show-trace