Skip to content

Bump version to 1.0.0-beta.9 #179

Bump version to 1.0.0-beta.9

Bump version to 1.0.0-beta.9 #179

Workflow file for this run

name: Build & test
on: [push]
jobs:
run_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Run unittests
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: Pipfile.lock
- run: pip install . && pip install pipenv && pipenv install --system -d
- run: pytest