Check code licensing #45
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
# Copyright (c) 2023 Ferrous Systems | |
# SPDX-License-Identifier: MIT OR Apache-2.0 | |
name: workflow-code-licensing | |
run-name: Check code licensing | |
on: [push, pull_request] | |
jobs: | |
job-run-reuse-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install tools | |
run: | | |
pipx install reuse | |
- name: Check Licensing | |
run: | | |
reuse lint |