File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Framework Docker Component Tests
2+ on :
3+ push :
4+ concurrency :
5+ group : ${{ github.workflow }}-${{ github.ref }}-components
6+ cancel-in-progress : true
7+ jobs :
8+ test :
9+ defaults :
10+ run :
11+ working-directory : framework
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Checkout repo
15+ uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
16+ - name : Check for changes in Framework
17+ uses : dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
18+ id : changes
19+ with :
20+ filters : |
21+ src:
22+ - 'framework/**'
23+ - name : Run Docker Component Tests
24+ if : steps.changes.outputs.src == 'true'
25+ run : |
26+ go test -timeout 5m -v -count 1 -run TestDocker ./...
Original file line number Diff line number Diff line change 1010 fail-fast : false
1111 matrix :
1212 project :
13- - name : framework
14- path : ./framework/
1513 - name : lib
1614 path : ./lib/
1715 - name : gotestloghelper
You can’t perform that action at this time.
0 commit comments