Skip to content

Commit

Permalink
core: reduce gh actions tirggers
Browse files Browse the repository at this point in the history
  • Loading branch information
mj0nez committed Sep 19, 2023
1 parent 9537ee8 commit 6289237
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 19 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: "Black"

on:
# check formatting on any push to main and any open pull request
push:
branches:
- main
pull_request: {}
on: [push]
jobs:
black:
runs-on: ${{ matrix.os }}
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: "Linters"

on:
# run linters on any push to main and any open pull request
push:
branches:
- main
pull_request: {}
on: [push]
jobs:
pylint:
name: Python Code Quality and Lint
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/packaging_test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: "Packaging Test"

on:
# check packaging on any push to main and any open pull request
push:
branches:
- main
pull_request: {}
on: [push]
jobs:
coverage:
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Unittests"

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

0 comments on commit 6289237

Please sign in to comment.