Skip to content

Bump urllib3 from 2.2.1 to 2.2.2 (#88) #121

Bump urllib3 from 2.2.1 to 2.2.2 (#88)

Bump urllib3 from 2.2.1 to 2.2.2 (#88) #121

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
backend:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up empty local config
run: |
cp ./config/template.json ./config/local.json
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: test code with pytest
run: |
poetry run python -m pytest