Add UUIDv5 namespace for Kolibri ecosystem #162
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: Python tests | |
on: [push, pull_request] | |
jobs: | |
pre_job: | |
name: Path match check | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@master | |
with: | |
github_token: ${{ github.token }} | |
paths: '["**.py", ".github/workflows/pythontest.yml"]' | |
unit_test: | |
name: Python unit tests | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python-version: [3.6, 3.7, 3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache pip | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('setup.py') }} | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: tox env cache | |
if: ${{ !startsWith(runner.os, 'windows') }} | |
uses: actions/cache@v2 | |
with: | |
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }} | |
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py') }} | |
- name: Test with tox | |
run: tox -e py${{ matrix.python-version }} | |
unit_test27: | |
name: Python unit tests (2.7) | |
needs: pre_job | |
runs-on: ubuntu-20.04 | |
container: | |
image: python:2.7.18-buster | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache pip | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-py2.7-${{ hashFiles('setup.py') }} | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: tox env cache | |
if: ${{ !startsWith(runner.os, 'windows') }} | |
uses: actions/cache@v2 | |
with: | |
path: ${{ github.workspace }}/.tox/py2.7 | |
key: ${{ runner.os }}-tox-py2.7-${{ hashFiles('setup.py') }} | |
- name: Test with tox | |
run: tox -e py2.7 |