Skip to content

Commit

Permalink
modify github workflows to run in every push over every branch
Browse files Browse the repository at this point in the history
  • Loading branch information
francof2a committed Feb 10, 2024
1 parent 85d731c commit 1c8bb97
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ name: Python package

on:
push:
branches: [ master ]
branches:
- '*'
pull_request:
branches: [ master ]
branches:
- '*'

jobs:
build:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/python-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ name: Python package

on:
push:
branches: [ master ]
branches:
- '*'
pull_request:
branches: [ master ]
branches:
- '*'

jobs:
build:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ name: Python package

on:
push:
branches: [ master ]
branches:
- '*'
pull_request:
branches: [ master ]
branches:
- '*'

jobs:
build:
Expand Down

0 comments on commit 1c8bb97

Please sign in to comment.