Skip to content

Commit

Permalink
Turn on github action for tests on pull requests (#84)
Browse files Browse the repository at this point in the history
This was overlooked in previous tooling.
  • Loading branch information
cdent committed Oct 15, 2023
1 parent 20e189c commit ef1ab10
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
name: tests
on: [push, workflow_dispatch]
on:
- push
- workflow_dispatch
- pull_request
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python: 3.5
env: py35
- python: 3.6
env: py36
- python: 3.7
env: py37
- python: 3.8
- python: "3.8"
env: py38
- python: 3.9
- python: "3.9"
env: py39
- python: "3.10"
env: py310
- python: "3.11"
env: py311
- python: "3.12-dev"
- python: "3.12"
env: py312
- python: pypy-3.8
env: pypy3
Expand Down

0 comments on commit ef1ab10

Please sign in to comment.