Skip to content

Moved coverage configuration into pyproject.toml and sorted requireme… #16

Moved coverage configuration into pyproject.toml and sorted requireme…

Moved coverage configuration into pyproject.toml and sorted requireme… #16

Workflow file for this run

name: check license headers
on:
push:
branches:
- "**"
jobs:
check-license-headers:
runs-on: ubuntu-20.04
steps:
- name: Checkout github repo (+ download lfs dependencies)
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install click
- name: Check licenses header
run: |
python license_checker_and_adder.py --path=../src/ --action=check-strict
python license_checker_and_adder.py --path=../tests/ --action=check-strict
working-directory: scripts