Skip to content

Commit

Permalink
Run the static code checks on push and when manually triggered
Browse files Browse the repository at this point in the history
GHA that only runs on pull_request is hard to test; I have to create PR to see it run.
With this change, the action can be tested in my personal fork before I create a PR
  • Loading branch information
jiridanek committed May 30, 2024
1 parent 98a9225 commit da7c9da
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
name: Code static analysis
on: [pull_request] # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
push:
pull_request:
workflow_dispatch:

permissions:
contents: read
Expand Down

0 comments on commit da7c9da

Please sign in to comment.