Skip to content

Bump gitpython from 3.1.31 to 3.1.32 #432

Bump gitpython from 3.1.31 to 3.1.32

Bump gitpython from 3.1.31 to 3.1.32 #432

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pip install -U pip
pip install poetry
poetry install
- name: Test with pytest
run: |
poetry run pytest
- name: Build with poetry
run: |
poetry build