Allow missing/empty cycle time files in timeseries #626
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
name: Eva Application Tests | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
evaapp: | |
name: Run eva application tests | |
runs-on: ubuntu-latest | |
steps: | |
# Setup Python | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.10 | |
# Update conda | |
- name: Update conda | |
run: conda update -n base -c defaults conda | |
# Install pip | |
- name: Install pip | |
run: conda install pip | |
# Install cartopy | |
- name: Install cartopy | |
run: conda install -c conda-forge cartopy | |
# Clone the eva code | |
- name: Clone eva repo | |
uses: actions/checkout@v2 | |
with: | |
lfs: true | |
# Install eva | |
#- name: Upgrade pip | |
# run: $CONDA/bin/pip3 install --upgrade pip | |
- name: Install eva and dependencies | |
run: $CONDA/bin/pip3 install --use-deprecated=legacy-resolver -r requirements-github.txt --user . | |
- name: Put eva in the path | |
run: echo "$HOME/.local/bin" >> $GITHUB_PATH | |
# Run the eva test suite | |
- name: Run eva applications tests | |
run: eva_tests application |