nixos-config/.github/workflows/check.yml
dependabot[bot] 435429c664
build(deps): bump DeterminateSystems/flake-checker-action from 5 to 7
Bumps [DeterminateSystems/flake-checker-action](https://github.com/determinatesystems/flake-checker-action) from 5 to 7.
- [Release notes](https://github.com/determinatesystems/flake-checker-action/releases)
- [Commits](https://github.com/determinatesystems/flake-checker-action/compare/v5...v7)

---
updated-dependencies:
- dependency-name: DeterminateSystems/flake-checker-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-13 08:36:30 +00:00

26 lines
697 B
YAML

name: "Check flake outputs"
on:
pull_request:
push:
branches:
- master
- develop
schedule:
- cron: '5 10 * * 4' # At 10:05 on Thursday.
jobs:
check-outputs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v10
- name: Check flake lockfile
uses: DeterminateSystems/flake-checker-action@v7
- name: Check flake outputs
run: |
nix flake check --impure --accept-flake-config --keep-going
env:
NIXPKGS_ALLOW_BROKEN: "1"
NIXPKGS_ALLOW_UNFREE: "1"
NIXPKGS_ALLOW_INSECURE: "1"
NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM: "1"