Skip to content

build(deps): bump actions/checkout from 3 to 5 #632

build(deps): bump actions/checkout from 3 to 5

build(deps): bump actions/checkout from 3 to 5 #632

Workflow file for this run

name: coverage
on: [push, pull_request]
jobs:
coverage:
strategy:
matrix:
go-version: [^1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Coverage
run: go test -race -covermode atomic -coverprofile=profile.cov ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}