Skip to content

Authorizing MPL 2.0, Apache 2.0, and HPND licenses in license_check.ini #3

Authorizing MPL 2.0, Apache 2.0, and HPND licenses in license_check.ini

Authorizing MPL 2.0, Apache 2.0, and HPND licenses in license_check.ini #3

Workflow file for this run

name: Run liccheck
on: [push, pull_request]
jobs:
liccheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run liccheck
run: liccheck -s license_check.ini