Skip to content

Commit

Permalink
Always run the build action on pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
fredizzimo committed Apr 7, 2024
1 parent 72eb76d commit cbf3890
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@ permissions:
contents: read

on:
# Allow manual triggering
workflow_dispatch:
# Always run on pull requests
pull:
# And on master when manually pushed or after merges
push:
paths-ignore:
- "website/**"
- ".vscode/**"
- "**.md"
branches:
master
paths-ignore:
- "website/**"
- ".vscode/**"
- "**.md"

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/lint-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ permissions:
contents: read

on:
pull_request:
branches: [main]
workflow_call:

env:
Expand Down

0 comments on commit cbf3890

Please sign in to comment.