Skip to content

Merge pull request #102 from ContactEngineering/24_v0.92.0 #204

Merge pull request #102 from ContactEngineering/24_v0.92.0

Merge pull request #102 from ContactEngineering/24_v0.92.0 #204

Workflow file for this run

name: Check coding conventions with flake8
on:
push:
branches:
- '**'
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
exclude: "docs/examples/*"