Skip to content

Update df_path parameter so that it can be both a path to a csv and a… #113

Update df_path parameter so that it can be both a path to a csv and a…

Update df_path parameter so that it can be both a path to a csv and a… #113

Workflow file for this run

name: pre-commit
on:
push:
branches: [main, develop]
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cache/pre-commit
~/.cache/pip
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pre-commit
- run: pre-commit run --verbose --all-files --show-diff-on-failure