Fix running tests

This commit is contained in:
2022-06-26 18:43:53 -07:00
parent a96aadc867
commit 143bde78d6

View File

@ -47,14 +47,14 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build C side with cmake - name: Build C code
run: | run: |
ls ls
cmake . -DQUICKTEX_NOPYTHON=TRUE cmake . -DQUICKTEX_NOPYTHON=TRUE
cmake --build . cmake --build .
- name: Run C tests - name: Test C code
run: ./Test run: cmake --build . --target test
build-sdist: build-sdist:
name: Build SDist name: Build SDist