Browse Source

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.
pull/3905/head
Chris Sidebottom 3 years ago
parent
commit
499c404f1e
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      .github/workflows/lint.yaml

+ 14
- 0
.github/workflows/lint.yaml 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

Loading…
Cancel
Save