Skip to content

Commit

Permalink
ci: skip windows for example parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq committed Dec 22, 2024
1 parent 61e9fb1 commit 3f659ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,13 @@ jobs:
test-go: true
test-swift: true
- name: Set up examples
if: matrix.os != 'windows-latest'
run: |-
git clone https://github.com/puppetlabs/puppet.git examples/puppet --single-branch --depth=1 --filter=blob:none
# TODO: Fix parsing on windows, case-insensitive fs leads to folders named `kconfig` being parsed
- name: Parse examples
uses: tree-sitter/parse-action@v4
if: matrix.os != 'windows-latest'
with:
files: |
examples/**/*.pp
Expand Down

0 comments on commit 3f659ef

Please sign in to comment.