feat: add wildcard tag pattern support for flexible filtering #9
This file contains hidden or 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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.23" | |
| - name: Run tests | |
| run: make test | |
| - name: Build | |
| run: make build | |
| - name: Test dry-run functionality | |
| run: ./bin/pathuni dry-run --config=cmd/pathuni/testdata/platform_specific.yaml --shell=bash |