Skip to content

Commit

Permalink
Add push and pull request to GH Action trigger
Browse files Browse the repository at this point in the history
It appears that Actions are not triggered for all pull requests.
I suspect the Actions need to register for event push and pull_request
in order to run CI on commits.

Signed-off-by: Eric Brown <browne@vmware.com>
  • Loading branch information
ericwb committed Jan 21, 2020
1 parent c6b1302 commit 7a2ef1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build and Test Bandit

on: [push]
on: [push, pull_request]

jobs:
pylint:
Expand Down

0 comments on commit 7a2ef1b

Please sign in to comment.