Skip to content

fix: Update actions workflow and remove coveralls. #54

fix: Update actions workflow and remove coveralls.

fix: Update actions workflow and remove coveralls. #54

Workflow file for this run

name: build-check
on: [push, pull_request]
jobs:
build-check:
name: Run build-check on Go ${{ matrix.go }}
runs-on: ubuntu-latest
strategy:
matrix:
go:
- '1.22'
- '1.21'
- '1.20'
- '1.19'
- '1.18'
- '1.17'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: make build_check
save-test-coverage:
name: Save test coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Get test coverage
run: make tests