Skip to content

Explore extending TheWellEmulator API #2266

Explore extending TheWellEmulator API

Explore extending TheWellEmulator API #2266

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/[email protected]
with:
extra_args: --hook-stage manual --all-files