-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add github actions for CI (#6)
* chore: Add github actions for CI Signed-off-by: Vaibhav Rabber <[email protected]> * install protoc Signed-off-by: Vaibhav Rabber <[email protected]> * more setup protoc Signed-off-by: Vaibhav Rabber <[email protected]> * fix Signed-off-by: Vaibhav Rabber <[email protected]> * fix link * submodule * protoc version Signed-off-by: Vaibhav Rabber <[email protected]> * upgrade protoc version --------- Signed-off-by: Vaibhav Rabber <[email protected]>
- Loading branch information
Showing
12 changed files
with
407 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
name: CI | ||
permissions: | ||
contents: read | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
CLICOLOR: 1 | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
ci: | ||
permissions: | ||
contents: none | ||
name: CI | ||
needs: [examples, test, golangci-lint, gen-lint] | ||
runs-on: ubuntu-latest | ||
if: always() | ||
steps: | ||
- name: Failed | ||
run: exit 1 | ||
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') | ||
|
||
examples: | ||
name: Build examples | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.23' | ||
- uses: arduino/setup-task@v2 | ||
with: | ||
version: 3.40.x | ||
- uses: arduino/setup-protoc@v3 | ||
with: | ||
version: 29.x | ||
- name: Setup protoc | ||
run: | | ||
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest | ||
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest | ||
- name: Build | ||
run: | | ||
for eg in `go list ./examples/... | sed 's|.*/||'`; do | ||
echo "Building '$eg' example" | ||
task example:build NAME=$eg | ||
done | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.23' | ||
- uses: arduino/setup-task@v2 | ||
with: | ||
version: 3.40.x | ||
- uses: arduino/setup-protoc@v3 | ||
with: | ||
version: 29.x | ||
- name: Setup protoc | ||
run: | | ||
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest | ||
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest | ||
- name: Test | ||
run: task test | ||
|
||
golangci-lint: | ||
name: GolangCI Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.23' | ||
- name: Lint | ||
uses: golangci/golangci-lint-action@v6 | ||
with: | ||
version: v1.63 | ||
|
||
gen-lint: | ||
name: Code Generation Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.23' | ||
- uses: arduino/setup-task@v2 | ||
with: | ||
version: 3.40.x | ||
- uses: arduino/setup-protoc@v3 | ||
with: | ||
version: 29.x | ||
- name: Setup protoc | ||
run: | | ||
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest | ||
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest | ||
- name: Lint | ||
run: task lint:gen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
linters: | ||
disable-all: true | ||
enable: | ||
- errcheck | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- staticcheck | ||
- unused | ||
- containedctx | ||
- contextcheck | ||
- copyloopvar | ||
- dupl | ||
- dupword | ||
- durationcheck | ||
- err113 | ||
- errname | ||
- errorlint | ||
- exhaustive | ||
- exptostd | ||
- fatcontext | ||
- forcetypeassert | ||
- gci | ||
- ginkgolinter | ||
- gocheckcompilerdirectives | ||
- gochecksumtype | ||
- gocognit | ||
- goconst | ||
- gocritic | ||
- godot | ||
- gofmt | ||
- gofumpt | ||
- goimports | ||
- goprintffuncname | ||
- grouper | ||
- importas | ||
- intrange | ||
- lll | ||
- makezero | ||
- mirror | ||
- misspell | ||
- nilerr | ||
- nilnesserr | ||
- nilnil | ||
- nlreturn | ||
- nolintlint | ||
- nonamedreturns | ||
- nosprintfhostport | ||
- prealloc | ||
- predeclared | ||
- protogetter | ||
- reassign | ||
- recvcheck | ||
- revive | ||
- stylecheck | ||
- tenv | ||
- testableexamples | ||
- testifylint | ||
- unconvert | ||
- unparam | ||
- usestdlibvars | ||
- wastedassign | ||
- whitespace | ||
- wsl | ||
|
||
linters-settings: | ||
exhaustive: | ||
default-signifies-exhaustive: true | ||
gochecksumtype: | ||
default-signifies-exhaustive: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.