Skip to content

Add SPFX headers to all files using the REUSE tool #194

Add SPFX headers to all files using the REUSE tool

Add SPFX headers to all files using the REUSE tool #194

Workflow file for this run

# SPDX-FileCopyrightText: 2020 Peter Bittner <django@bittner.it>
#
# SPDX-License-Identifier: GPL-3.0-or-later
name: Checks
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
PIP_DISABLE_PIP_VERSION_CHECK: '1'
PY_COLORS: '1'
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env:
- lint
- format
- package
- license
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install build tools
run: pip install tox
- name: Run ${{ matrix.env }}
run: tox run -e ${{ matrix.env }}