-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: ci | ||
|
||
# Controls when the workflow will run | ||
on: | ||
|
||
# Trigger the workflow on all pushes | ||
push: | ||
branches: | ||
- 'master' | ||
- 'develop' | ||
tags-ignore: | ||
- '**' | ||
|
||
# Trigger the workflow on all pull requests | ||
pull_request: ~ | ||
|
||
# Allow workflow to be dispatched on demand | ||
workflow_dispatch: ~ | ||
|
||
# Trigger after public PR approved for CI | ||
pull_request_target: | ||
types: [labeled] | ||
|
||
jobs: | ||
|
||
# Calls a reusable CI workflow to qa, test & deploy the current repository. | ||
# It will pull in all needed dependencies and produce a code coverage report on success. | ||
# If all checks were successful and a new release tag pushed, the package will be published on PyPI. | ||
# In case the job fails, a message will be posted to a Microsoft Teams channel. | ||
ci: | ||
name: ci | ||
uses: ecmwf-actions/reusable-workflows/.github/workflows/ci-python.yml@v1 | ||
with: | ||
codecov_upload: true | ||
notify_teams: true | ||
build_package_inputs: | | ||
self_build: false | ||
dependencies: | | ||
ecmwf/ecbuild | ||
ecmwf/eckit | ||
ecmwf/metkit | ||
ecmwf/fdb | ||
dependency_branch: develop | ||
secrets: | ||
pypi_username: ${{ secrets.PYPI_USERNAME }} | ||
pypi_password: ${{ secrets.PYPI_PASSWORD }} | ||
incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cffi==1.16.0 | ||
findlibs==0.0.5 | ||
pyeccodes==0.1.1 | ||
setuptools==69.0.2 |