Skip to content

ci: fix missing directory #30

ci: fix missing directory

ci: fix missing directory #30

Workflow file for this run

name: test
on: [push]
jobs:
run-unittests:
strategy:
matrix:
platform: ["macos-latest", "windows-latest", "ubuntu-latest"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Install tox
run: pipx install tox
- uses: actions/setup-python@v4
with:
python-version: |
3.10
3.11
3.12
3.13
cache: poetry
- name: Checkout toolcache
uses: actions/cache@v3
with:
path: |
.hypothesis
.pytest-cache
.tox
key: test-${{ matrix.platform }}-toolcache
- name: Execute tests
run: tox r