-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
conda environment.yml for environment inwhich to run certain fre-work…
…flow things. another workflow yaml gutted from fre-cli for pipeline that lints cylc files and runs data_lineage pytest to start.
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
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,34 @@ | ||
name: create_test_conda_env | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '>=3.9' | ||
|
||
- name: Add conda to system path | ||
run: | | ||
# $CONDA is an env var pointing to root of miniconda dir | ||
echo $CONDA/bin >> $GITHUB_PATH | ||
|
||
- name: Create fre-workflows environment | ||
run: | | ||
# create environment containing all dependencies | ||
# the env cannot be explicitly activated in github CI/CD | ||
conda env create -f environment.yml --name fre-workflows | ||
|
||
# add conda env's executables to github's PATH equiv. | ||
echo $CONDA/envs/fre-workflows/bin >> $GITHUB_PATH | ||
|
||
- name: Run unittest in fre-workflows environment | ||
run: | | ||
# try to make sure the right things are in GITHUB_PATH | ||
echo $CONDA/envs/fre-workflows/bin >> $GITHUB_PATH | ||
cylc lint -v | ||
cd data_lineage && python -m unittest discover -s test |
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,18 @@ | ||
name: fre-workflows | ||
channels: | ||
- defaults | ||
- conda-forge | ||
- noaa-gfdl | ||
dependencies: | ||
- python | ||
- pip | ||
- click | ||
- pyyaml | ||
- pylint | ||
- jsonschema | ||
- conda-forge::cylc-flow>=8.2.0 | ||
- conda-forge::cylc-rose | ||
- conda-forge::metomi-rose | ||
- conda-forge::cylc-uiserver | ||
- conda-forge::pytest | ||
- conda-forge::pytest-cov |