Skip to content

Bump gitpython from 3.1.30 to 3.1.32 #15

Bump gitpython from 3.1.30 to 3.1.32

Bump gitpython from 3.1.30 to 3.1.32 #15

Workflow file for this run

name: Run Python Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
python -m poetry install
- name: Run tests with pytest
env:
API_KEY: ${{ secrets.API_KEY }}
run: python -m poetry run pytest