Skip to content

Bump gitpython from 3.1.27 to 3.1.34 #16

Bump gitpython from 3.1.27 to 3.1.34

Bump gitpython from 3.1.27 to 3.1.34 #16

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize]
jobs:
Tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
poetry-version: ["1.1.15"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
- name: Setup Cpp
uses: aminya/setup-cpp@v1
with:
compiler: gcc
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Test
run: make test
- name: Upload coverage
uses: codecov/codecov-action@v3