mirror of
https://github.com/callumio/scenics.git
synced 2025-12-17 03:29:21 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
468 B
YAML
23 lines
468 B
YAML
name: Checks
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
flake-check:
|
|
name: Flake Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: cachix/install-nix-action@v31
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- uses: cachix/cachix-action@v16
|
|
with:
|
|
name: scenics
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
useDaemon: true
|
|
|
|
- name: Check flake
|
|
run: nix flake check
|