From b1b59e1760a4b82a8d4e448645ae51e81603d44e Mon Sep 17 00:00:00 2001 From: Ward Fisher Date: Mon, 24 Jan 2022 16:31:34 -0700 Subject: [PATCH] Correct trigger event for mingw tests to pull_request from push' --- .github/workflows/run_tests_win_mingw.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests_win_mingw.yml b/.github/workflows/run_tests_win_mingw.yml index d404d0fd5..919c50f23 100644 --- a/.github/workflows/run_tests_win_mingw.yml +++ b/.github/workflows/run_tests_win_mingw.yml @@ -7,7 +7,7 @@ name: Run MSYS2, MinGW64-based Tests -on: [ push ] +on: [ pull_request ] jobs: @@ -34,7 +34,7 @@ jobs: - name: (Autotools) Run autoconf run: autoreconf -if - - name: (Autotools) Configure Build + - name: (Autotools) Configure Build run: ./configure --enable-hdf5 --enable-dap --disable-dap-remote-tests --disable-static --disable-plugins --disable-byterange --disable-dap-remote-tests --disable-logging if: ${{ success() }} @@ -52,4 +52,3 @@ jobs: - name: (Autotools) Build and Run Tests run: make check -j 8 if: ${{ success() }} -