Skip to content

Bump gitpython from 3.1.30 to 3.1.32 #22

Bump gitpython from 3.1.30 to 3.1.32

Bump gitpython from 3.1.30 to 3.1.32 #22

Workflow file for this run

name: Python
on: push
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --requirement requirements.txt
- name: Check lint and test
run: make check
- name: Check publish
run: make publish