Skip to content

Commit

Permalink
Update unittests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jkiesele authored Apr 19, 2024
1 parent 96b977d commit edef66d
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Run tests
on: [push]

jobs:
build-linux:
py_three_nine:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
Expand All @@ -27,3 +27,28 @@ jobs:
run: |
cd test
python3 runtests.py
py_three_eleven:
runs-on: ubuntu-latest
strategy:
max-parallel: 1

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Check cmake
run: |
cmake --version
- name: run install
run: |
python3 setup.py install
- name: run unit tests
run: |
cd test
python3 runtests.py

0 comments on commit edef66d

Please sign in to comment.