Skip to content

Bump version: 0.2.7 → 0.3.0 #25

Bump version: 0.2.7 → 0.3.0

Bump version: 0.2.7 → 0.3.0 #25

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
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