Add linting workflow to GitHub Actions

Currently this just checks for correct Copyright and License headers but
in future we can expand to check other things.
This commit is contained in:
Chris Sidebottom 2023-02-09 10:09:56 +00:00
parent 5a9cd87794
commit 499c404f1e
1 changed files with 14 additions and 0 deletions

14
.github/workflows/lint.yaml vendored Normal file
View File

@ -0,0 +1,14 @@
# SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
# SPDX-License-Identifier: BSD-3-Clause
name: Linting Checks
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1