Skip to content

Commit f14b10d

Browse files
committed
ci: exclude .carp-src from lint find
1 parent 1c8e3be commit f14b10d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ jobs:
3232
sudo install -m 755 /tmp/angler/out/angler /usr/local/bin/
3333
3434
- name: Lint
35-
run: angler $(find . -name '*.carp' -not -path './out/*' -not -path './docs/*')
35+
run: |
36+
angler $(find . -name '*.carp' \
37+
-not -path './out/*' \
38+
-not -path './docs/*' \
39+
-not -path './.carp-src/*')
3640
3741
- name: Generate docs
3842
run: carp -x gendocs.carp

0 commit comments

Comments
 (0)