Skip to content

Commit

Permalink
Add GH actions for build+lint+test
Browse files Browse the repository at this point in the history
  • Loading branch information
lazyguru committed Nov 24, 2023
1 parent a7dae95 commit cbc9641
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.2'

- id: govulncheck
uses: golang/govulncheck-action@v1

- name: Lint
run: gofmt -l -e ./

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

- name: Coverage
uses: gwatts/[email protected]
with:
# Fail the build if the coverage drops below supplied percentage
coverage-threshold: 0 # Change this as coverage improves
# Fail the build if coverage drops below coverage-threshold. One of "always", "never" or "only_pull_requests"
fail-coverage: only_pull_requests
# Adds a comment to the PR with coverage information if true. If false will only add an action summary report
add-comment: true
# One or more regular expressions matching filenames to exclude from coverage statistics (e.g. for generated Go files)
#ignore-pattern:

0 comments on commit cbc9641

Please sign in to comment.