Skip to content

Bump urllib3 from 2.2.0 to 2.2.2 #30

Bump urllib3 from 2.2.0 to 2.2.2

Bump urllib3 from 2.2.0 to 2.2.2 #30

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- 'main'
- 'ci/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pipx install poetry
- name: Install dependencies
run: |
poetry install
poetry run pip install torch torchvision
- name: Lint, format and typecheck
run: |
make qa