Skip to content

Adding continuous integration. #1

Adding continuous integration.

Adding continuous integration. #1

Workflow file for this run

name: Style, Spellcheck, & Docstring
on: pull_request
jobs:
style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
python-version: "3.11"
- uses: pre-commit/[email protected]
- name: Install dependencies
run: pip install .
# Run Ruff
- name: Run Ruff
run: ruff check contourusv
# Run Codespell
- name: Run Codespell
run: codespell contourusv