mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2026-04-22 22:57:04 +08:00
35 lines
810 B
YAML
35 lines
810 B
YAML
# SPDX-FileCopyrightText: 2023-2025 Steffen Vogel <post@steffenvogel.de>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json
|
|
---
|
|
name: Compliance Checks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
reuse:
|
|
uses: cunicu/.github/.github/workflows/reuse.yaml@v0.3.0
|
|
|
|
flake:
|
|
name: Check flake.lock
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://code.forgejo.org/actions/checkout@v5
|
|
|
|
- name: Check Nix flake inputs
|
|
uses: DeterminateSystems/flake-checker-action@v12
|
|
with:
|
|
fail-mode: true
|
|
send-statistics: false
|