fix(workflows): correct checkout action syntax and update validation … #2
Workflow file for this run
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 Regex | |
| on: | |
| push: | |
| paths: | |
| - "regex_patterns/**/*.yml" | |
| - "regex_patterns/**/*.yaml" | |
| - ".github/workflows/testRegex.yml" | |
| - "scripts/testPatterns.ps1" | |
| pull_request: | |
| paths: | |
| - "regex_patterns/**/*.yml" | |
| - "regex_patterns/**/*.yaml" | |
| - ".github/workflows/testRegex.yml" | |
| - "scripts/testPatterns.ps1" | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| container: mcr.microsoft.com/powershell:lts | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test Patterns | |
| run: pwsh scripts/testPatterns.ps1 |