Skip to content

Commit

Permalink
build: Add coverage profile
Browse files Browse the repository at this point in the history
  • Loading branch information
roblillack committed Jun 6, 2024
1 parent cbeed25 commit d983c31
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# 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" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

jobs:

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

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...

- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverprofile=profile.cov ./...

- name: Test
run: go test -v ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov

0 comments on commit d983c31

Please sign in to comment.