Skip to content

Commit

Permalink
add test all github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ndharasz committed Jan 12, 2024
1 parent ed433d7 commit 44da95c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test-all.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test all versions

on:
workflow_dispatch:
push

jobs:
test-py-3-9:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Test Python 3.9
run: make test_3_9

test-py-3-10:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Test Python 3.10
run: make test_3_10

test-py-3-11:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Test Python 3.11
run: make test_3_11

0 comments on commit 44da95c

Please sign in to comment.