commit 620f3fe5910b9d893eab6c9f36426ce118cdde69 from: Sergey Bronnikov date: Thu Jun 30 14:32:08 2022 UTC Disable trace mode on running tests Test script now reports status for each testcase, trace mode looks unnecessary. Needed for #53 commit - 39150df4b478838790663610fe3e1980f2261a42 commit + 620f3fe5910b9d893eab6c9f36426ce118cdde69 blob - 087aad524fadbaa76364bc8779ef7c6b09fb536c blob + 6f60aadf3645ad11ac629ff97e83118c6f81a44a --- .github/workflows/test.yaml +++ .github/workflows/test.yaml @@ -61,9 +61,9 @@ jobs: if: ${{ matrix.operating-system == 'macOS-latest' }} - name: Run regression tests on Ubuntu - run: bash -x ./test.sh + run: sh ./test.sh if: ${{ matrix.operating-system == 'ubuntu-latest' }} - name: Run regression tests on macOS - run: bash -x ./test.sh + run: sh ./test.sh if: ${{ matrix.operating-system == 'macOS-latest' }}