GHActions: Run tests

This commit is contained in:
TellowKrinkle 2021-04-23 23:51:02 -05:00 committed by tellowkrinkle
parent f032e663cd
commit 958e27c782
2 changed files with 8 additions and 0 deletions

View File

@ -177,6 +177,10 @@ jobs:
- name: Build PCSX2
working-directory: build
run: ../.github/workflows/scripts/linux/compile.sh
- name: Run Tests
working-directory: ./build
run: ninja unittests
- name: Package AppImage
env:

View File

@ -112,3 +112,7 @@ jobs:
- name: Build PCSX2
working-directory: build
run: make -j$(getconf _NPROCESSORS_ONLN) # macOS doesn't use make install
- name: Run Tests
working-directory: build
run: make -j$(getconf _NPROCESSORS_ONLN) unittests