Skip to content

chore: bump deps (#12) #15

chore: bump deps (#12)

chore: bump deps (#12) #15

Workflow file for this run

name: Lint & Install Pipeline
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
name: Lint
with:
options: --check --line-length 120 .
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements.txt
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt