Skip to content

Commit

Permalink
fix: build.yml to run on main not master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
simojo authored Apr 29, 2024
1 parent c7cc808 commit 5c22966
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ env:

# Controls when the action will run
# Workflow begins with push or PR events
# Focuses on the master branch only
# Focuses on the main branch only
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

# Create one single job
# This job performs all of the necessary checks
Expand Down Expand Up @@ -114,4 +114,4 @@ jobs:
- name: Run and Report Test Coverage - MacOS Only
if: always() && matrix.os == 'macOS'
run: |
poetry run task test-coverage
poetry run task test-coverage

0 comments on commit 5c22966

Please sign in to comment.