Skip to content

Merge pull request #278 from ClimateImpactLab/dependabot/github_actio… #825

Merge pull request #278 from ClimateImpactLab/dependabot/github_actio…

Merge pull request #278 from ClimateImpactLab/dependabot/github_actio… #825

name: Python package
on:
pull_request:
push:
branches:
- main
jobs:
codequality:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install package
run: |
pip install . --no-deps
- name: Format check with ruff
run: |
ruff format . --diff
- name: Lint check with ruff
run: |
ruff check . --output-format=github
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install package
run: |
pip install .
- name: Test with pytest
run: |
pytest -v --cov dscim --cov-report term-missing --cov-report xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}