From 7d77210a5fb5b8e8d813f646d7df32b79d9b55f6 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Mon, 2 Jun 2025 13:40:09 -0700 Subject: [PATCH] run test after build --- .github/workflows/builds.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 2c30d5fc..0c853c90 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -32,3 +32,8 @@ jobs: run: | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 call build ${{ matrix.target }} ${{ matrix.compiler }} ${{ matrix.mode }} || exit /b 1 + - name: run_torture + shell: cmd + if: ${{ matrix.target == 'torture' }} + run: torture -l:radlink || exit /b 1 +