Skip to content

ci: Add Pyodide build and JupyterLite based view #111

ci: Add Pyodide build and JupyterLite based view

ci: Add Pyodide build and JupyterLite based view #111

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.x' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install pre-commit
pre-commit install
- name: Lint with pre-commit
run: |
pre-commit run --all-files