CI: Always run unit tests

This commit is contained in:
Lynix 2022-03-19 14:49:49 +01:00
parent cf5e4b72e1
commit ed057c8364
3 changed files with 12 additions and 0 deletions

View File

@ -69,6 +69,10 @@ jobs:
- name: Build Nazara - name: Build Nazara
run: xmake run: xmake
# Run unit tests
- name: Run unit tests
run: xmake run NazaraUnitTests
# Install the result files # Install the result files
- name: Install Nazara - name: Install Nazara
run: xmake install -vo package run: xmake install -vo package

View File

@ -80,6 +80,10 @@ jobs:
- name: Build Nazara - name: Build Nazara
run: xmake run: xmake
# Run unit tests
- name: Run unit tests
run: xmake run NazaraUnitTests
# Install the result files # Install the result files
- name: Install Nazara - name: Install Nazara
run: xmake install -vo package run: xmake install -vo package

View File

@ -63,6 +63,10 @@ jobs:
- name: Build Nazara - name: Build Nazara
run: xmake.exe run: xmake.exe
# Run unit tests
- name: Run unit tests
run: xmake.exe run NazaraUnitTests
# Install the result files # Install the result files
- name: Install Nazara - name: Install Nazara
run: xmake.exe install -vo package run: xmake.exe install -vo package