Verify REUSE #1024
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Copyright (c) 2022, Felix Fontein | |
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Verify REUSE | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Run CI once per day (at 06:00 UTC) | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
check: | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v5 |