Skip to content

Bump gitpython from 3.1.27 to 3.1.34 #23

Bump gitpython from 3.1.27 to 3.1.34

Bump gitpython from 3.1.27 to 3.1.34 #23

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:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Check flake8
run: |
poetry run flake8 fundom --count --show-source --statistics
- name: Check isort
run: |
poetry run isort fundom/**/*.py --check-only --verbose
- name: Test with pytest
run: |
poetry run pytest
- name: Generate Report
run: |
poetry run pytest --cov=./ --cov-report=xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,PYTHON
fail_ci_if_error: true
verbose: true