Skip to content

go 1.19

go 1.19 #76

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Install
run: make install
- name: Build
run: make build
- name: Test
run: |
go test -v -covermode=count -coverprofile=coverage.out ./...
- name: Coverage
uses: jandelgado/gcov2lcov-action@v1.0.9
- name: Coveralls
uses: coverallsapp/github-action@v2.1.2
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov