Skip to content

Commit

Permalink
modify gh action to run on all branch pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
zeuslawyer committed Jun 21, 2024
1 parent fec0743 commit b3c8a2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Go Build & Test

on:
# Run tests for pull requests to the main branch
# Run tests for pull requests to the main or develop branch
pull_request:
branches: [main]
# Run tests on pushes to the development branch
push:
branches: [main, develop]
# Run tests on pushes to all branches
push:
branches: ["**"]

jobs:
test:
Expand Down

0 comments on commit b3c8a2f

Please sign in to comment.