Skip to content

Bump version: 0.3.0 → 0.3.1 #29

Bump version: 0.3.0 → 0.3.1

Bump version: 0.3.0 → 0.3.1 #29

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install pytest
pip install .
- name: Test
run: pytest