Skip to content

Commit

Permalink
Stop duplication of push and pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph McKinsey committed Jun 7, 2024
1 parent 320077d commit 7ee0db7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci-web.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: CI - Web

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
os: [ubuntu-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: CI

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
Expand Down

0 comments on commit 7ee0db7

Please sign in to comment.