Skip to content

Add github action ci, bump to version 0.3 #7

Add github action ci, bump to version 0.3

Add github action ci, bump to version 0.3 #7

Workflow file for this run

name: Python CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install
run: make install
- name: Test
run: make test