Condense REUSE 3.0 copyright and license notes #65
Workflow file for this run
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
# © 2019-2023 Serokell <[email protected]> | |
# © 2019-2023 Lars Jellema <[email protected]> | |
# | |
# SPDX-License-Identifier: MPL-2.0 | |
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v26 | |
- name: reuse lint | |
run: nix-build -A packages.reuse && result/bin/reuse lint | |
- name: build nixfmt | |
run: nix-build | |
if: success() || failure() |