Re-Enable tests for non-Windows platforms

This commit is contained in:
kas 2022-01-04 22:32:54 +01:00
parent 52115943c4
commit 62898ed95d

View File

@ -199,9 +199,11 @@ jobs:
path: build/release/pack/Gittyup-*
name: Gittyup ${{ matrix.env.name }}
# - name: Test
# continue-on-error: true
# run: |
# cd build/release
# ninja check
- name: Test
# TODO: Re-Enable this when https://github.com/actions/runner/issues/1206 gets resolved
if: matrix.env.ninja_platform != 'win'
continue-on-error: true
run: |
cd build/release
ninja check
...