From ca318eecc1170745b2e9e6ef0f92a4472c0212d7 Mon Sep 17 00:00:00 2001 From: Eugen Sumin Date: Thu, 8 Feb 2024 15:06:22 +0100 Subject: [PATCH] Add github actions --- .github/workflows/go.yml | 65 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..6230d97 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,65 @@ +name: Go + +on: + push: + branches: + - '*' + pull_request: + branches: + - '*' + +jobs: + build: + strategy: + matrix: + go: ['stable', 'oldstable'] + os: ['ubuntu-latest'] + + runs-on: ${{ matrix.os }} + + name: Go ${{ matrix.go }} in ${{ matrix.os }} + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + name: Install Go + with: + go-version: ${{ matrix.go }} + check-latest: true + cache: true + + - name: Go Environment + run: | + go version + go env + + - name: Get dependencies + run: go get -v -t -d ./... + + - name: Run Fmt + run: go fmt ./... + + - name: Run Vet + run: | + go vet -stdmethods=false $(go list ./...) + go mod tidy + if ! test -z "$(git status --porcelain)"; then + echo "Please run 'go mod tidy'" + exit 1 + fi + + - name: Run Lint + uses: golangci/golangci-lint-action@v3 + with: + version: latest + only-new-issues: true + skip-pkg-cache: true + + - name: Run Staticcheck + run: | + go install honnef.co/go/tools/cmd/staticcheck@latest + staticcheck ./... + + - name: Run Test + run: go test -race -coverpkg=./... -coverprofile=coverage.txt ./... \ No newline at end of file