Skip to content

Merge pull request #1 from bitplane/str-first #33

Merge pull request #1 from bitplane/str-first

Merge pull request #1 from bitplane/str-first #33

Workflow file for this run

name: Unit tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy2.7 and pypy3.9
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build dev environment
run: make dev
- name: Unit tests
run: make test