ci: run tests on every branch

This commit is contained in:
283375 2024-05-22 00:29:41 +08:00
parent e7398be07e
commit 937bbe2eee
Signed by: 283375
SSH Key Fingerprint: SHA256:UcX0qg6ZOSDOeieKPGokA5h7soykG61nz2uxuQgVLSk

View File

@ -1,17 +1,19 @@
name: Run tests
on:
push:
branches:
- 'master'
- '*'
pull_request:
types: [opened, reopened]
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4