Skip to content

Bumping version from 0.1.0 to 0.2.0 #12

Bumping version from 0.1.0 to 0.2.0

Bumping version from 0.1.0 to 0.2.0 #12

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: pdm-project/setup-pdm@v4
name: Setup Python and PDM
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: |
pdm install
- name: Run tests
run: pdm run pytest