Skip to content

initial setup

initial setup #2

Workflow file for this run

name: Style Check
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run styles & lint check
run: |
pip install .[testing]
ruff format --check ihoop/ tests/ examples/
ruff check ihoop/ tests/ examples/
pyright ihoop/