Skip to content

Commit

Permalink
Run CI on push and on PR.
Browse files Browse the repository at this point in the history
If you don't specify PR, CI won't run on PR's from public forks.
  • Loading branch information
jonathanpallant committed Sep 10, 2024
1 parent 42e744b commit bc80a00
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-ferrocene.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: workflow-build-everything-ferrocene
run-name: Build Everything with Ferrocene
on: [push]
on: [push, pull_request]
jobs:
job-build-demo-app:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: workflow-build-everything
run-name: Build Everything
on: [push]
on: [push, pull_request]
jobs:
job-build-demo-app:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: workflow-code-analysis
run-name: Run code analysis
on: [push]
on: [push, pull_request]
jobs:
job-clippy-demo-app:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: workflow-code-format
run-name: Check code formatting
on: [push]
on: [push, pull_request]
jobs:
job-format-demo-app:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: workflow-code-licensing
run-name: Check code licensing
on: [push]
on: [push, pull_request]
jobs:
job-run-reuse-lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit bc80a00

Please sign in to comment.