Add basic pre-commit config, apply fixes and run it in CI #387
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: Unit tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install PyYAML | |
run: | | |
pip3 install -r requirements.txt | |
pip3 install coverage | |
- name: Test error outputs | |
run: coverage run -m unittest -b | |
- name: Generate coverage | |
run: coverage xml | |
- name: Upload coverage | |
uses: codecov/codecov-action@v2 |