fix: path expansion in glob pattern #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "ci" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
jobs: | |
test-action: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out the repo" | |
uses: "actions/checkout@v4" | |
- name: "Install and run Bulloak on path with single quotes" | |
uses: "smol-ninja/bulloak-toolchain@staging" | |
with: | |
tree-path: 'test-workspace/**/*.tree' | |
- name: "Install and run Bulloak on path without quotes" | |
uses: "smol-ninja/bulloak-toolchain@staging" | |
with: | |
tree-path: test-workspace/**/*.tree | |
- name: "Bulloak summary" | |
run: | | |
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY |