Skip to content

tech stack added and pre-requisites to getting started #388

tech stack added and pre-requisites to getting started

tech stack added and pre-requisites to getting started #388

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: '3.14'
- name: Install local dependencies
run: |
pip install -U pip
pip install 'jupyter>=1.1.1,<2.0.0' 'nbconvert>=7.16.6,<8.0.0'
- uses: ./.github/actions/pre-commit