Don't clean up if tmp_dir (aka development mode) is used #88
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: Squash tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup | |
run: | | |
sudo apt-get update | |
pip install -U pip | |
pip install "tox<4.0.0" | |
- name: Info | |
run: | | |
docker version | |
docker info | |
- name: Run tests | |
run: | | |
PV=${{ matrix.python-version }} | |
echo "Running tests for Python version $PV ( ${PV/./} )" | |
make test-py"${PV/./}" |