Skip to content

Add test matrix for supported python range #24

Add test matrix for supported python range

Add test matrix for supported python range #24

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
name: Push
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: [3.9, 3.12]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make init-env
- name: Test
run: make test
- name: Lint
run: make lint