Skip to content

Bump gitpython from 3.1.37 to 3.1.41 #51

Bump gitpython from 3.1.37 to 3.1.41

Bump gitpython from 3.1.37 to 3.1.41 #51

Workflow file for this run

name: Build and test package
on: [push]
jobs:
build:
name: Test with ${{matrix.python}} on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: pip install nox poetry
- name: Run tests with Nox
run: nox -s lint tests --verbose