Skip to content

Converting development scripts into python package and adding napari plugin #2

Converting development scripts into python package and adding napari plugin

Converting development scripts into python package and adding napari plugin #2

Workflow file for this run

name: Python linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
# Update output format to enable automatic inline annotations.
- name: Run pre-commit
run: cd python; pre-commit run --all-files