19 lines
418 B
YAML
19 lines
418 B
YAML
###
|
|
# This file was automatically generated with nix-actions.
|
|
jobs:
|
|
check_workflows:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with: {}
|
|
- name: Check that the workflows are up to date
|
|
run: nix-shell -A check-workflows --run '[ $(git status --porcelain | wc -l)
|
|
-eq 0 ]'
|
|
name: Check workflows
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
paths:
|
|
- workflows/*
|