Pathlib again (#215) #503
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: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-without-dask: | |
name: ${{ matrix.python-version }}-build-without-dask | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create conda environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
cache-downloads: true | |
cache-environment: true | |
micromamba-version: 'latest' | |
environment-file: ci/environment.yml | |
create-args: | | |
python=${{ matrix.python-version }} | |
cache-key: micromamba-${{ matrix.python-version }}-${{ runner.os }} | |
- name: Conda info | |
run: conda info | |
- name: Install roms-tools | |
shell: micromamba-shell {0} | |
run: | | |
python -V | |
python -m pip install -e . --force-reinstall | |
- name: Running Tests without Dask | |
shell: bash -l {0} | |
run: | | |
python -V | |
coverage run --rcfile=coverage.toml -m pytest --verbose roms_tools/tests/* | |
- name: Get coverage report | |
shell: bash -l {0} | |
run: | | |
coverage report -m | |
coverage xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4.0.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.xml | |
flags: unittests # optional | |
test-with-dask: | |
name: 3.13-build-with-dask | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create conda environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
cache-downloads: true | |
cache-environment: true | |
micromamba-version: 'latest' | |
environment-file: ci/environment.yml | |
create-args: | | |
python=${{ matrix.python-version }} | |
cache-key: micromamba-${{ matrix.python-version }}-${{ runner.os }} | |
- name: Conda info | |
run: conda info | |
- name: Install roms-tools | |
shell: micromamba-shell {0} | |
run: | | |
python -V | |
python -m pip install -e .[dask] --force-reinstall | |
- name: Running Tests with Dask | |
shell: bash -l {0} | |
run: | | |
python -V | |
coverage run --rcfile=coverage.toml -m pytest --use_dask --verbose roms_tools/tests/* | |
- name: Get coverage report | |
shell: bash -l {0} | |
run: | | |
coverage report -m | |
coverage xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4.0.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage.xml | |
flags: unittests # optional |