This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
Bump pytest from 5.2.4 to 8.2.0 in /requirements #66
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 | |
workflow_dispatch: | |
jobs: | |
license_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- 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 System Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt install python3-dev swig libssl-dev portaudio19-dev libpulse-dev python3-pyaudio | |
- name: Install core repo | |
run: | | |
pip install . | |
- name: Get explicit and transitive dependencies | |
run: | | |
pip freeze > requirements-all.txt | |
- name: Check python | |
id: license_check_report | |
uses: pilosus/[email protected] | |
with: | |
requirements: 'requirements-all.txt' | |
fail: 'Copyleft,Other,Error' | |
fails-only: true | |
exclude: '^(tqdm|precise-runner).*' | |
exclude-license: '^(Mozilla).*$' | |
- name: Print report | |
if: ${{ always() }} | |
run: echo "${{ steps.license_check_report.outputs.report }}" |