Skip to content

Commit

Permalink
đŸ”§ chore(test-and-build.yml): update branch filter to allow any branch…
Browse files Browse the repository at this point in the history
… name to trigger the workflow
  • Loading branch information
Codycody31 committed Dec 13, 2023
1 parent 88473a4 commit 91b4fb3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

name: Test & Build

# any tag or branch name
on:
push:
branches: [main]
branches: ["*"]
tags: ["*"]
pull_request:
branches: [main]
branches: ["*"]

jobs:
test-and-build:
Expand Down

0 comments on commit 91b4fb3

Please sign in to comment.