Skip to content

Commit

Permalink
Merge pull request #69 from hf-kklein/ci-triggers
Browse files Browse the repository at this point in the history
Change GitHub Action Triggers to all PRs and Pushes to `main`
  • Loading branch information
mj0nez authored Jan 2, 2024
2 parents 89f059a + c9dd8e9 commit 45da700
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 45da700

Please sign in to comment.