Skip to content

Bump requests from 2.31.0 to 2.32.3 #45

Bump requests from 2.31.0 to 2.32.3

Bump requests from 2.31.0 to 2.32.3 #45

Workflow file for this run

name: CI
on: [push, workflow_dispatch]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: pip install black
- run: black --check bugzilla2gitlab
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements-dev.txt
- run: pip install .
- run: pytest