Skip to content

Commit

Permalink
Change GitHub Action Triggers to all PR and Pushes to main
Browse files Browse the repository at this point in the history
  • Loading branch information
hf-kklein committed Jan 2, 2024
1 parent 89f059a commit c9dd8e9
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: "Black"

on: [push]
on:
pull_request:
push:
branches:
- main
jobs:
black:
runs-on: ${{ matrix.os }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: "Linters"

on: [push]
on:
pull_request:
push:
branches:
- main
jobs:
pylint:
name: Python Code Quality and Lint
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/packaging_test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: "Packaging Test"

on: [push]
on:
pull_request:
push:
branches:
- main
jobs:
coverage:
runs-on: ${{ matrix.os }}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: "Unittests"

on: [push]
on:
pull_request:
push:
branches:
- main
jobs:
pytest:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit c9dd8e9

Please sign in to comment.