Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Coverage"

on: [push,pull_request]
on: [push]
jobs:
coverage:
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Check code format with pre-commit"

on: [push, pull_request]
on: [push]
jobs:
formatting:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Linting"
on: [push,pull_request]
on: [push]
jobs:
linting:
name: Python Code Quality and Lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packaging_test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Packaging Test"

on: [pull_request]
on: [push]
jobs:
check_packaging:
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_docs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Test Doc Creation (Sphinx)"
on: [pull_request]
on: [push]
jobs:
docbuild:
name: Check Docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Tests

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