Skip to content

Commit

Permalink
Fix CI execution conditions: pull request + push to main
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Jun 7, 2024
1 parent 3f0cdc4 commit bae8788
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
---
name: Build

"on": push
"on":
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}

jobs:
build:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
---
name: Lint

"on": push
"on":
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}

jobs:
build:
Expand Down

0 comments on commit bae8788

Please sign in to comment.