Skip to content

fix error when resolveuid is called with no uuid #8

fix error when resolveuid is called with no uuid

fix error when resolveuid is called with no uuid #8

Workflow file for this run

name: Testing
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
workflow_dispatch:
jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ${{ fromJSON(vars.TEST_PYTHON_VERSIONS) }}
os: ${{ fromJSON(vars.TEST_OS_VERSIONS) }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache packages
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('tox.ini') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox -e test