Skip to content

Fix netCDF library, otherwise the package can not be installed #240

Fix netCDF library, otherwise the package can not be installed

Fix netCDF library, otherwise the package can not be installed #240

Workflow file for this run

name: Code checks
on:
schedule:
- cron: '0 04 * * *'
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize
workflow_dispatch:
jobs:
code_checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Code checks
run: |
pip install pre-commit
pre-commit install --install-hooks
if [ "${GITHUB_REF}" = "refs/heads/main" ]; then
SKIP=no-commit-to-branch pre-commit run --all-files
else
pre-commit run --all-files
fi