Skip to content

Bump shogo82148/actions-goveralls from 1.8.0 to 1.9.1 #42

Bump shogo82148/actions-goveralls from 1.8.0 to 1.9.1

Bump shogo82148/actions-goveralls from 1.8.0 to 1.9.1 #42

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Test
jobs:
lint:
name: runner / golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/[email protected]
- name: golangci-lint
uses: reviewdog/[email protected]
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check out
uses: actions/[email protected]
- name: go test
run: go test -v -race -coverprofile=profile.cov ./...
- name: Send coverage
uses: shogo82148/[email protected]
with:
path-to-profile: profile.cov