refactor/legacy_audio #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run License Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- dev | |
paths: | |
- 'requirements/**' | |
- 'setup.py' | |
workflow_dispatch: | |
jobs: | |
license_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Build Tools | |
run: | | |
python -m pip install build wheel | |
- name: Install core repo | |
run: | | |
pip install . | |
- name: Install licheck | |
run: | | |
pip install git+https://github.com/NeonJarbas/lichecker | |
- name: Install test dependencies | |
run: | | |
pip install pytest pytest-timeout pytest-cov | |
- name: Test Licenses | |
run: | | |
pytest test/license_tests.py |