File tree Expand file tree Collapse file tree 2 files changed +29
-15
lines changed
Expand file tree Collapse file tree 2 files changed +29
-15
lines changed Original file line number Diff line number Diff line change 1+ name : Auto Bump Version
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - main
7+ types :
8+ - opened
9+ - synchronize
10+
11+ permissions :
12+ contents : write
13+ pull-requests : write
14+
15+ jobs :
16+ api_test :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v4
20+
21+ - name : Set up Go
22+ uses : actions/setup-go@v4
23+ with :
24+ go-version : ' 1.24.3'
25+ cache-dependency-path : subdir/go.sum
26+
27+ - name : Test
28+ working-directory : MyMusicBoxApi
29+ run : go test -v ./...
Original file line number Diff line number Diff line change @@ -13,21 +13,6 @@ permissions:
1313 pull-requests : write
1414
1515jobs :
16- api_test :
17- runs-on : ubuntu-latest
18- steps :
19- - uses : actions/checkout@v4
20-
21- - name : Set up Go
22- uses : actions/setup-go@v4
23- with :
24- go-version : ' 1.24.3'
25- cache-dependency-path : subdir/go.sum
26-
27- - name : Test
28- working-directory : MyMusicBoxApi
29- run : go test -v ./...
30-
3116 bump :
3217 if : contains(github.head_ref, 'frontend')
3318 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments