added ocean variable list #103
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: CI | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: ${{ matrix.os }}-py${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
# python versions | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for all branches and tags. | |
- name: Set environment variables | |
run: | | |
echo "CONDA_ENV_FILE=ci/environment.yaml" >> $GITHUB_ENV | |
echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV | |
- name: Create conda environment | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
cache-downloads: true | |
cache-downloads-key: "${{runner.os}}-${{runner.arch}}-py${{matrix.python-version}}" | |
environment-file: ci/environment.yaml | |
create-args: >- | |
python=${{ matrix.python-version }} | |
- name: Version info | |
run: | | |
conda info -a | |
conda list | |
- name: Run tests | |
timeout-minutes: 5 | |
run: pytest ci/tests.py -s |