add new action that runs when PR is merged
All checks were successful
Unit Testing / test (3.11) (pull_request) Successful in 46s
Unit Testing / test (3.10) (pull_request) Successful in 50s
Unit Testing / test (3.8) (pull_request) Successful in 46s
Unit Testing / test (3.12) (pull_request) Successful in 50s
Unit Testing / test (3.9) (pull_request) Successful in 50s
Pull Request Merged / autoupdate_minor (pull_request) Successful in 4s
All checks were successful
Unit Testing / test (3.11) (pull_request) Successful in 46s
Unit Testing / test (3.10) (pull_request) Successful in 50s
Unit Testing / test (3.8) (pull_request) Successful in 46s
Unit Testing / test (3.12) (pull_request) Successful in 50s
Unit Testing / test (3.9) (pull_request) Successful in 50s
Pull Request Merged / autoupdate_minor (pull_request) Successful in 4s
This commit is contained in:
17
.github/workflows/merge_PR.yml
vendored
Normal file
17
.github/workflows/merge_PR.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Pull Request Merged
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
autoupdate_minor:
|
||||
if: github.event.pull_request.merged == true
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.12'
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -c "import eos; print(eos.__version__)"
|
||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -28,7 +28,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
|
||||
fail-fast: false
|
||||
fail-fast: true
|
||||
|
||||
steps:
|
||||
- name: Checkout LFS objects
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
Package to handle data redction at AMOR instrument to be used by __main__.py script.
|
||||
"""
|
||||
|
||||
__version__ = '3.2.3-2'
|
||||
__version__ = '3.2.4'
|
||||
__date__ = '2026-02-27'
|
||||
|
||||
Reference in New Issue
Block a user