Unit Test Github Actions #3
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
| # Unit Test Github Actions β Runs unit tests for reusable GitHub Actions and shared | |
| # scripts on PRs that touch action, script, or test files. | |
| name: Unit Test Github Actions | |
| on: | |
| pull_request: | |
| paths: ['.github/actions/**', '.github/scripts/**', '.github/test/**'] | |
| workflow_dispatch: | |
| jobs: | |
| test-validate-release-version: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Test validate-release-version | |
| run: bash .github/test/validate-release-version.test.sh |