Skip to content

chore(ci/test): test for 3.12 #27

chore(ci/test): test for 3.12

chore(ci/test): test for 3.12 #27

Workflow file for this run

name: "Test"
on:
push:
pull_request:
workflow_dispatch:
schedule:
# Test every two weeks.
- cron: '0 0 1,15 * *'
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
make test