Skip to content

Merge pull request #7 from r4hx/dependabot/pip/gitpython-3.1.34 #18

Merge pull request #7 from r4hx/dependabot/pip/gitpython-3.1.34

Merge pull request #7 from r4hx/dependabot/pip/gitpython-3.1.34 #18

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