From bcde9f02cc1ddd94e12dbd56d13ff8fa8524c7a8 Mon Sep 17 00:00:00 2001 From: Aditya Goel <48102515+adityagoel4512@users.noreply.github.com> Date: Thu, 16 Jan 2025 14:24:42 +0000 Subject: [PATCH] Fix Array API test trigger (#96) --- .github/workflows/array-api.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/array-api.yml b/.github/workflows/array-api.yml index f59f8e2..aa2a60c 100644 --- a/.github/workflows/array-api.yml +++ b/.github/workflows/array-api.yml @@ -38,8 +38,8 @@ jobs: - name: Run Array API tests (Scheduled) if: ${{ github.event_name == 'schedule' && github.ref == 'refs/heads/main' }} run: pixi run arrayapitests - - name: Run Array API tests (Push) - if: ${{ github.event_name == 'push' }} + - name: Run Array API tests (PR and main branch) + if: ${{ github.event_name != 'schedule' }} run: pixi run arrayapitests --max-examples 16 --hypothesis-seed=0 - name: Upload Array API tests report uses: actions/upload-artifact@v4