CMEMS observations scripts #508
Workflow file for this run
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: Python tests | |
on: | |
push: | |
branches: [ master, ] | |
paths: | |
- '**.py' | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ master ] | |
paths: | |
- '**.py' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
test-linux: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, ubuntu-20.04] | |
max-parallel: 5 | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Set up Python 3.12.0 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12.0 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: 3.12.0 | |
- name: Update environment | |
run: conda env update -f config/conda/environment.yml --name test --quiet | |
- name: Run tests | |
run: | | |
echo PROJ_LIB=$CONDA_BASE/share/proj >> $GITHUB_ENV | |
conda activate test | |
./run_python_tests.sh |