Skip to content

Commit

Permalink
Add/limit gh action run (#58)
Browse files Browse the repository at this point in the history
* limit action run on `dev` and `main` branches

* `CHANGELOG.md` updated
  • Loading branch information
AHReccese authored Oct 23, 2024
1 parent 1a4d99c commit 7c8b493
Show file tree
Hide file tree
Showing 4 changed files with 33 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
### Changed
- GitHub actions are limited to the `dev` and `main` branches
## [0.7] - 2024-10-23
### Changed
- `Python 3.13` added to tests
Expand Down

0 comments on commit 7c8b493

Please sign in to comment.