Skip to content

setup.cfg -> .flake8 #17

setup.cfg -> .flake8

setup.cfg -> .flake8 #17

name: Test Python application
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Python set up
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Python cache set up
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-py-cache
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pre-commit tests
uses: pre-commit/action@v3.0.0