Add go test workflow #4
							
								
								
									
										64
									
								
								.gitea/workflows/go-test.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										64
									
								
								.gitea/workflows/go-test.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,64 @@ | |||||||
|  | name: Run go tests | ||||||
|  | on: | ||||||
|  |   - test | ||||||
|  |   - pull_request | ||||||
|  |  | ||||||
|  | env: | ||||||
|  |   GOPATH: /go_path | ||||||
|  |   GOCACHE: /go_cache | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   test: | ||||||
|  |     runs-on: ubuntu-latest | ||||||
|  |     timeout-minutes: 5 | ||||||
|  |     env: | ||||||
|  |     steps: | ||||||
|  |     - uses: actions/checkout@v4 | ||||||
|  |  | ||||||
|  |     - name: Set up Go | ||||||
|  |       uses: https://github.com/actions/setup-go@v4 | ||||||
|  |       with: | ||||||
|  |         go-version: 1.21 | ||||||
|  |         use-latest: true | ||||||
|  |      | ||||||
|  |     - name: Hash go.mod and go.sum | ||||||
|  |       uses: https://gitea.com/actions/go-hashfiles@v0.0.1 | ||||||
|  |       id: hash-go | ||||||
|  |       with: | ||||||
|  |         patterns: | | ||||||
|  |           go.mod | ||||||
|  |           go.sum | ||||||
|  |      | ||||||
|  |     - name: Cache go  | ||||||
|  |       uses: actions/cache@v3 | ||||||
|  |  | ||||||
|  |     - name: Go mod download | ||||||
|  |       run: go mod download | ||||||
|  |  | ||||||
|  |     - name: Go mod verify | ||||||
|  |       run: go mod verify | ||||||
|  |      | ||||||
|  |     - name: Go mod tidy | ||||||
|  |       run: go mod tidy && git diff --exit-code | ||||||
|  |  | ||||||
|  |     - name: Check gofmt | ||||||
|  |       run: gofmt -s -w . && git diff --exit-code | ||||||
|  |  | ||||||
|  |     - name: Check go vet | ||||||
|  |       run: go vet ./... | ||||||
|  |      | ||||||
|  |     - name: Build | ||||||
|  |       run: go build -v ./... | ||||||
|  |  | ||||||
|  |     - name: Test | ||||||
|  |       run: go test -cover -coverprofile=/tmp/cov.out -v ./... | ||||||
|  |      | ||||||
|  |     - name: Make coverage report | ||||||
|  |       run: go tool cover -html=/tmp/cov.out -o /tmp/cov.html | ||||||
|  |      | ||||||
|  |     - name: Publish coverage report | ||||||
|  |       uses: actions/upload-artifact@v3 | ||||||
|  |       with: | ||||||
|  |         name: coverage-report | ||||||
|  |         path: /tmp/cov.html | ||||||
|  |  | ||||||
							
								
								
									
										8
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										8
									
								
								go.mod
									
									
									
									
									
								
							| @@ -4,6 +4,10 @@ go 1.21.3 | |||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	github.com/go-chi/chi/v5 v5.0.10 | 	github.com/go-chi/chi/v5 v5.0.10 | ||||||
|  | 	github.com/pelletier/go-toml/v2 v2.1.0 | ||||||
|  | 	github.com/pion/interceptor v0.1.25 | ||||||
|  | 	github.com/pion/sdp/v3 v3.0.6 | ||||||
|  | 	github.com/pion/webrtc/v4 v4.0.0-beta.7 | ||||||
| 	github.com/urfave/cli/v2 v2.25.7 | 	github.com/urfave/cli/v2 v2.25.7 | ||||||
| 	golang.org/x/crypto v0.15.0 | 	golang.org/x/crypto v0.15.0 | ||||||
| ) | ) | ||||||
| @@ -12,24 +16,20 @@ require ( | |||||||
| 	github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect | 	github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect | ||||||
| 	github.com/davecgh/go-spew v1.1.1 // indirect | 	github.com/davecgh/go-spew v1.1.1 // indirect | ||||||
| 	github.com/google/uuid v1.4.0 // indirect | 	github.com/google/uuid v1.4.0 // indirect | ||||||
| 	github.com/pelletier/go-toml/v2 v2.1.0 // indirect |  | ||||||
| 	github.com/pion/datachannel v1.5.5 // indirect | 	github.com/pion/datachannel v1.5.5 // indirect | ||||||
| 	github.com/pion/dtls/v2 v2.2.8 // indirect | 	github.com/pion/dtls/v2 v2.2.8 // indirect | ||||||
| 	github.com/pion/ice/v3 v3.0.2 // indirect | 	github.com/pion/ice/v3 v3.0.2 // indirect | ||||||
| 	github.com/pion/interceptor v0.1.25 // indirect |  | ||||||
| 	github.com/pion/logging v0.2.2 // indirect | 	github.com/pion/logging v0.2.2 // indirect | ||||||
| 	github.com/pion/mdns v0.0.9 // indirect | 	github.com/pion/mdns v0.0.9 // indirect | ||||||
| 	github.com/pion/randutil v0.1.0 // indirect | 	github.com/pion/randutil v0.1.0 // indirect | ||||||
| 	github.com/pion/rtcp v1.2.12 // indirect | 	github.com/pion/rtcp v1.2.12 // indirect | ||||||
| 	github.com/pion/rtp v1.8.3 // indirect | 	github.com/pion/rtp v1.8.3 // indirect | ||||||
| 	github.com/pion/sctp v1.8.9 // indirect | 	github.com/pion/sctp v1.8.9 // indirect | ||||||
| 	github.com/pion/sdp/v3 v3.0.6 // indirect |  | ||||||
| 	github.com/pion/srtp/v3 v3.0.1 // indirect | 	github.com/pion/srtp/v3 v3.0.1 // indirect | ||||||
| 	github.com/pion/stun/v2 v2.0.0 // indirect | 	github.com/pion/stun/v2 v2.0.0 // indirect | ||||||
| 	github.com/pion/transport/v2 v2.2.4 // indirect | 	github.com/pion/transport/v2 v2.2.4 // indirect | ||||||
| 	github.com/pion/transport/v3 v3.0.1 // indirect | 	github.com/pion/transport/v3 v3.0.1 // indirect | ||||||
| 	github.com/pion/turn/v3 v3.0.1 // indirect | 	github.com/pion/turn/v3 v3.0.1 // indirect | ||||||
| 	github.com/pion/webrtc/v4 v4.0.0-beta.7 // indirect |  | ||||||
| 	github.com/pmezard/go-difflib v1.0.0 // indirect | 	github.com/pmezard/go-difflib v1.0.0 // indirect | ||||||
| 	github.com/russross/blackfriday/v2 v2.1.0 // indirect | 	github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||||||
| 	github.com/stretchr/testify v1.8.4 // indirect | 	github.com/stretchr/testify v1.8.4 // indirect | ||||||
|   | |||||||
							
								
								
									
										3
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								go.sum
									
									
									
									
									
								
							| @@ -25,8 +25,10 @@ github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ | |||||||
| github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= | github.com/google/uuid v1.4.0 h1:MtMxsa51/r9yyhkyLsVeVt0B+BGQZzpQiTQ4eHZ8bc4= | ||||||
| github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= | github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= | ||||||
| github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= | github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= | ||||||
|  | github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= | ||||||
| github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= | github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= | ||||||
| github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= | github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= | ||||||
|  | github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= | ||||||
| github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= | github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= | ||||||
| github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= | github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= | ||||||
| github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= | github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= | ||||||
| @@ -196,6 +198,7 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 | |||||||
| google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= | google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= | ||||||
| google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= | google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= | ||||||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||||||
|  | gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= | ||||||
| gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||||||
| gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= | gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= | ||||||
| gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= | gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user