Skip to content

Commit

Permalink
adding workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pputman-clabs committed Jan 9, 2023
1 parent 77a48cd commit 38e5292
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/go-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
name: 'Run Go Tests'
on:
push:
pull_request:
workflow_dispatch:

env:
GO_VERSION: 1.19.4
GO_WORKING_DIRECTORY: '.'
TEST_FILE: mockokta_test.go

jobs:
go-tests:
runs-on: ubuntu-latest
permissions: # Must change the job token permissions to use JWT auth
contents: read
id-token: write

steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568
with:
go-version: ${{ env.GO_VERSION }}

- name: Verify dependencies
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: go mod verify

- name: Build
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: go build -v ./...

- name: Run go vet
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: go vet ./...

- name: Install staticcheck
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: go install honnef.co/go/tools/cmd/staticcheck@latest

- name: Run staticcheck
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: staticcheck ./...

- name: Install golint
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: go install golang.org/x/lint/golint@latest

- name: Run golint
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: golint ./...

- name: Run tests
working-directory: ${{ env.GO_WORKING_DIRECTORY }}
run: go test -race -vet=off -v ./...

0 comments on commit 38e5292

Please sign in to comment.