Skip to content

164 enhance the windshield distortion workflow #464

164 enhance the windshield distortion workflow

164 enhance the windshield distortion workflow #464

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: pre-commmit style check
on:
pull_request:
branches: [ main ]
jobs:
pre-commmit_style_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements_style.txt ]; then pip install -r requirements_style.txt; fi
- uses: pre-commit/[email protected]