debug on push github actions #25
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: ci-tracksuite | |
# Controls when the workflow will run | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
jobs: | |
qa: | |
name: qa | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
- run: pip install black flake8 isort | |
- run: isort --check . | |
- run: black --check . | |
- run: flake8 . | |
setup: | |
name: setup | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: python -m pip install . | |
test: | |
name: pytest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: git config --global user.email "[email protected]" | |
- run: git config --global user.name "Dummy User" | |
- run: python -m pip install .[test] | |
- run: python -m pytest . -v |