Skip to content

Bump actions/setup-go from 4 to 5 (#169) #333

Bump actions/setup-go from 4 to 5 (#169)

Bump actions/setup-go from 4 to 5 (#169) #333

Workflow file for this run

name: Running CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Running CI
run: make ci
- name: Convert coverage file to lcov
run: |
GO111MODULE=off go get -u github.com/jandelgado/gcov2lcov
$(go env GOPATH)/bin/gcov2lcov -infile=coverage.txt -outfile=coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage.lcov