From 7ee0db7a39c8ac18d2abc521d53b4e1e99eb8d0b Mon Sep 17 00:00:00 2001 From: Joseph McKinsey Date: Fri, 7 Jun 2024 10:51:27 -0600 Subject: [PATCH] Stop duplication of push and pull request --- .github/workflows/ci-web.yml | 10 ++++++++-- .github/workflows/ci.yml | 8 +++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-web.yml b/.github/workflows/ci-web.yml index 7219ad3a..4751cac4 100644 --- a/.github/workflows/ci-web.yml +++ b/.github/workflows/ci-web.yml @@ -1,6 +1,12 @@ name: CI - Web -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: + branches: + - main jobs: test: @@ -8,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macOS-latest, ubuntu-latest, windows-latest] + os: [ubuntu-latest] python-version: ["3.9"] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35d56545..4e1ebc52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ name: CI -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: + branches: + - main jobs: test: