Skip to content

Bump gitpython from 3.1.31 to 3.1.34 #11

Bump gitpython from 3.1.31 to 3.1.34

Bump gitpython from 3.1.31 to 3.1.34 #11

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://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
# Poetry has to be installed before setting up Python with a cache
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install --no-interaction
- name: Lint
run: |
poetry run poe lint
- name: Test
run: |
poetry run poe test