File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ go-version : [ 'oldstable', 'stable' ]
11+
12+ steps :
13+ - uses : actions/checkout@v4
14+ - name : Setup Go ${{ matrix.go-version }}
15+ uses : actions/setup-go@v5
16+ with :
17+ go-version : ${{ matrix.go-version }}
18+ - name : Build
19+ run : make build
20+ - name : Test
21+ run : make test
Original file line number Diff line number Diff line change 1+ /bin
2+ /asyncroutinemanager
Original file line number Diff line number Diff line change @@ -4,10 +4,15 @@ APP_NAME=asyncroutinemanager
44
55all : build
66
7+ ginkgo :
8+ go install github.com/onsi/ginkgo/v2/ginkgo
9+
10+ tools : ginkgo
11+
712build :
813 go build -o $(APP_NAME )
914
10- test :
15+ test : tools
1116 ginkgo -r -v
1217
1318clean :
You can’t perform that action at this time.
0 commit comments