Skip to content

Commit

Permalink
limit action run on dev and main branches
Browse files Browse the repository at this point in the history
  • Loading branch information
AHReccese committed Oct 23, 2024
1 parent 1a4d99c commit 20adc10
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/linux_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@

name: Linux

on: [push, pull_request]
on:
push:
branches:
- main
- dev

pull_request:
branches:
- dev
- main

env:
TEST_PYTHON_VERSION: 3.9
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/macOS_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@

name: macOS

on: [push, pull_request]
on:
push:
branches:
- main
- dev

pull_request:
branches:
- dev
- main

env:
TEST_PYTHON_VERSION: 3.9
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/windows_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@

name: Windows

on: [push, pull_request]
on:
push:
branches:
- main
- dev

pull_request:
branches:
- dev
- main

env:
TEST_PYTHON_VERSION: 3.9
Expand Down

0 comments on commit 20adc10

Please sign in to comment.