Skip to content

Commit 89c5119

Browse files
authored
Fix GitHub workflow triggers (#60)
1 parent 2855be8 commit 89c5119

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/pylint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: Pylint
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ master ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ master ]
8+
workflow_dispatch:
89
jobs:
910
build:
1011
runs-on: ubuntu-latest

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ master ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ master ]
8+
workflow_dispatch:
89

910
jobs:
1011
pytest:

0 commit comments

Comments
 (0)