Skip to content

Bump pre-commit from 2.15.0 to 3.6.2 #205

Bump pre-commit from 2.15.0 to 3.6.2

Bump pre-commit from 2.15.0 to 3.6.2 #205

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
python-ver:
- '3.7'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-ver }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-ver }}
- uses: actions/[email protected]
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-ver }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python-ver }}-pip-
- name: Install dependencies
run: pip install -Ur requirements-dev.txt
- name: Test with pytest
run: pytest
env:
PYTHONDEVMODE: 1
PYTHONPATH: .
- uses: codecov/[email protected]
with:
name: build-${{ matrix.python-ver }}
fail_ci_if_error: true