Bump gitpython from 3.1.30 to 3.1.32 #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master, dev ] | |
pull_request: | |
branches: [ master, dev ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
tox: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Without quotes, 3.10 becomes 3.1 | |
python-version: ['3.10', '3.7', '3.8', '3.9', '3.11'] | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache pip packages | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/pip | |
key: ${{ matrix.python-version }}-${{ hashFiles('Pipfile.lock', 'tox.ini') }} | |
- name: Install tox | |
run: pip install -U tox | |
- name: Test | |
run: tox | |
- name: Lint | |
if: ${{ matrix.python-version == '3.10' }} | |
run: tox | |
env: | |
TOXENV: lint | |
- name: Upload results | |
if: ${{ matrix.python-version == '3.10' }} | |
run: tox | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
TOXENV: upload |