File tree Expand file tree Collapse file tree 2 files changed +31
-4
lines changed
Expand file tree Collapse file tree 2 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 5959 - name : Checkout GIT Repository
6060 uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
6161
62- - name : Run script tests
63- id : script-tests
64- run : ./scripts/runTests.sh
65-
6662 - name : Set Set output variable 'analysis-name'
6763 id : set-analysis-name
6864 run : echo "analysis-name=${{ env.PROJECT_NAME }}-${{ env.AXON_FRAMEWORK_VERSION }}" >> "$GITHUB_OUTPUT"
Original file line number Diff line number Diff line change 1+ name : Run Tests
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ # Only watch changes in scripts, json files containing test data and this workflow for push events
8+ paths :
9+ - ' **/*.sh'
10+ - ' **/test*.*'
11+ - ' .github/workflows/internal-run-tests.yml'
12+ pull_request :
13+ branches :
14+ - main
15+ # Only watch changes in scripts, json files containing test data and this workflow for push events
16+ paths :
17+ - ' **/*.sh'
18+ - ' **/test*.*'
19+ - ' .github/workflows/internal-run-tests.yml'
20+
21+ jobs :
22+ run-tests :
23+ runs-on : ubuntu-latest
24+
25+ steps :
26+ - name : Checkout GIT Repository
27+ uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
28+
29+ - name : Run script tests
30+ id : script-tests
31+ run : ./scripts/runTests.sh
You can’t perform that action at this time.
0 commit comments