Skip to content

pyproject: bump version to 0.2.0 #32

pyproject: bump version to 0.2.0

pyproject: bump version to 0.2.0 #32

Workflow file for this run

name: Run Python Tests
on:
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ]
name: Python ${{ matrix.python-version }} Test
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: python -m unittest -v