add predict.py unit testing #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test all versions | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
test-predict: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Test predict.py | |
run: make test_predict | |
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 |