Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Drop support of Python 3.7 and 3.8 (#99) #54

Drop support of Python 3.7 and 3.8 (#99)

Drop support of Python 3.7 and 3.8 (#99) #54

Workflow file for this run

name: CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
# https://github.com/actions/setup-python/blob/v3.0.0/src/find-python.ts#L112-L120
- "3.12-dev"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup
run: make setup
- name: Test
run: make test