Skip to content

chore: drop active support for 3.9 #224

chore: drop active support for 3.9

chore: drop active support for 3.9 #224

name: Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
schedule:
- cron: "15 7 */9 * *"
workflow_dispatch:
permissions:
contents: read
pull-requests: read
jobs:
build:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: boidolr/actions/python-pip-env@main
with:
python-version: "${{ matrix.python-version }}"
- name: Execute tests
run: |
pip3 install -q tox
tox -e py
precommit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- uses: boidolr/actions/run-precommit@main