Skip to content

Commit 2ee8b95

Browse files
committed
Don't run examples action on all pushes to repo
1 parent b7c0c9f commit 2ee8b95

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/run-examples.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: examples
22

33
on:
4-
push:
5-
# branches: [ master ]
6-
pull_request:
7-
# branches: [ master ]
4+
# push:
5+
# branches: [ master ]
6+
# pull_request:
7+
# branches: [ master ]
88
workflow_dispatch:
99

1010
jobs:
@@ -29,10 +29,6 @@ jobs:
2929
run: |
3030
python -m pip install --upgrade pip
3131
python -m pip install .[examples]
32-
# The pyqt5 package may not be needed for non-interactive runs (such as
33-
# in this CI), but may be needed as a backend for Matplotlib to run
34-
# interactively.
35-
# pip install pyqt5
3632
3733
- name: Run examples
3834
run: |

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Lint with flake8
3939
run: |
4040
python -m flake8 . --count --statistics
41-
41+
4242
- name: Run mypy
4343
run: |
4444
python -m mypy --strict simple_pid

0 commit comments

Comments
 (0)