Merge pull request #42 from exploreriii/test-2-test-workflow #4
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 Files Naming Check | |
| on: | |
| push | |
| concurrency: | |
| group: pr-checks-${{ github.workflow }}-${{ github.ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-test-files: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - name: Fetch main branch | |
| run: | | |
| git fetch origin main | |
| - name: Check added test file names | |
| run: | | |
| chmod +x .github/scripts/check_test_files.sh | |
| .github/scripts/check_test_files.sh |