aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index fd0650e..88dd15e 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -40,7 +40,7 @@ jobs:
40 uses: actions/checkout@v4 40 uses: actions/checkout@v4
41 41
42 - name: "Run tests" 42 - name: "Run tests"
43 run: ./scripts/test || cat tests/test-suite.log 43 run: ./scripts/test || (status=$?; cat tests/test-suite.log; exit $status)
44 env: 44 env:
45 ARCH: "${{ matrix.arch }}" 45 ARCH: "${{ matrix.arch }}"
46 CC: "${{ matrix.compiler }}" 46 CC: "${{ matrix.compiler }}"