Jlc/strain dispatcher action #483
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: Test suite workflow π°πβ | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
Running-test: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 2 | |
matrix: | |
python-version: ["3.8", "3.10", "3.11"] | |
django: ["32"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependency | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/test.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run Python Automation Tests | |
run: | | |
export TOXENV=${TOX_ENV//./} | |
make automation-run-tests | |
env: | |
TOX_ENV: py${{matrix.python-version}}-django${{matrix.django}} |