Collapse build and run test steps into a single step, no need to build all the tests before seeing if any fail.

This commit is contained in:
Ward Fisher 2022-01-24 15:11:58 -07:00
parent 17702fa80c
commit 3c017da5e3

View File

@ -48,11 +48,7 @@ jobs:
run: make -j LDFLAGS="-no-undefined -Wl,--export-all-symbols"
if: ${{ success() }}
- name: (Autotools) Build Tests
run: make check TESTS="" -j
if: ${{ success() }}
- name: (Autotools) Run Tests
- name: (Autotools) Build and Run Tests
run: make check -j
if: ${{ success() }}