Skip to content

JOSS paper update #2478

JOSS paper update

JOSS paper update #2478

Workflow file for this run

name: precommit
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- develop
release:
types:
- published
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
pre-commit:
name: Pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -e .[dev,spatiotemporal]
- uses: pre-commit/action@v3.0.0
with:
extra_args: --hook-stage manual --all-files