File tree Expand file tree Collapse file tree 4 files changed +34
-5
lines changed
Expand file tree Collapse file tree 4 files changed +34
-5
lines changed Original file line number Diff line number Diff line change 1+ on : [pull_request]
2+ name : Golang CI
3+ jobs :
4+ checks :
5+ strategy :
6+ matrix :
7+ go-version : [ 1.24.x ]
8+ os : [ ubuntu-latest ]
9+ name : run
10+ runs-on : ${{matrix.os}}
11+ steps :
12+ - name : checkout master
13+ uses : actions/checkout@master
14+
15+ - name : checking makefile
16+ run : cat -e -t -v Makefile
17+
18+ - name : Running process quality tests
19+ uses : actions/setup-go@v5
20+ with :
21+ go-version : ${{ matrix.go-version }}
22+ # args: make run-pipeline
23+
24+ - run : make run-pipeline
Original file line number Diff line number Diff line change 22
33.PHONY : test build clean examples install
44
5+ run-pipeline :
6+ @echo ****** RUNNING BUILD******
7+ go build
8+ @echo ****** MAKING SURE LINT IS CORRECT******
9+ # go get -u golang.org/x/lint/golint
10+ # golint -set_exit_status api/... iplocation/... utils/... shieldio/... ./
11+ @echo ******STARTING TESTS******
12+ go test -gcflags="all=-l -N" -v ./...
13+ @echo ******DONE******
14+
515# Run tests
616test :
717 go test -v ./...
Original file line number Diff line number Diff line change 11module github.com/ericbrisrubio/messages-worker-sdk
22
33go 1.24
4-
5- require (
6- github.com/google/uuid v1.3.0
7- )
8-
You can’t perform that action at this time.
0 commit comments