From e040371998a5c55154a54bb33b1bdae021366b23 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 23 Jan 2025 12:32:11 -0500 Subject: [PATCH] CI Updates Until launch, only run tests in CI on Ubuntu (cheaper minutes) and only on PRs. --- .github/workflows/test.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c4f47a2d..2a281895 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,17 +1,14 @@ name: Tests on: - push: - branches: ["*"] + #push: + # branches: ["main"] pull_request: branches: ["*"] jobs: build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest, ubuntu-latest] + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4