Skip to content

Commit

Permalink
Fix bug: path with * not allowed in github action (ok in shell)
Browse files Browse the repository at this point in the history
  • Loading branch information
lelandaisb committed Aug 8, 2024
1 parent 947c27d commit 3380734
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/check-recipes-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

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

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

0 comments on commit 3380734

Please sign in to comment.