Skip to content

Commit

Permalink
First test on flake8 action
Browse files Browse the repository at this point in the history
  • Loading branch information
lelandaisb committed Aug 8, 2024
1 parent d726184 commit 99c3dbb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check-recipes-style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Check recipes style'

on:
workflow_dispatch

jobs:
main:
name: Check recipes style
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Flake8 lint on meshing recipes
uses: py-actions/flake8@v2
with:
ignore: "E501,F405,F403"
path: "meshing/packages"

0 comments on commit 99c3dbb

Please sign in to comment.