Skip to content

Commit

Permalink
Exclude orginial folder structure from linting. See also: field33/plo…
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel committed Oct 17, 2022
1 parent fd26e2f commit 434139c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Find Fields
env:
FILES: |
find fields -type f -name "*.ttl"
find fields -type f -name "*.ttl" -not -path "*/original/*"
run: |
eval $FILES | wc -l
- name: Lint
run: |
find fields -type f -name "*.ttl" | xargs -I % plow lint %
find fields -type f -name "*.ttl" -not -path "*/original/*" | xargs -I % plow lint %

0 comments on commit 434139c

Please sign in to comment.