Adding multiple processes to task_proc - TRON-2192 #302
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 | |
# Controls when the action will run. | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
release: | |
jobs: | |
tox: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
make_target: [test, tox_docs] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
# GHA won't setup tox for us and we use tox-pip-extensions for venv-update | |
- run: pip install tox==3.2 tox-pip-extensions==1.3.0 | |
- run: make ${{ matrix.make_target }} |