Skip to content

Bump version from 0.1.8 to 0.1.9 #3

Bump version from 0.1.8 to 0.1.9

Bump version from 0.1.8 to 0.1.9 #3

Workflow file for this run

# Run tests
name: Run tests
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4.1.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
python -m poetry config virtualenvs.create false
python -m poetry install --no-dev
python -m poetry add pytest
- name: Test with pytest
run: |
python -m pytest -s