Skip to content

Fix CI by dumping codecov and upgrade go #754

Fix CI by dumping codecov and upgrade go

Fix CI by dumping codecov and upgrade go #754

Workflow file for this run

on: [push, pull_request]
name: tests
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Check format (gofmt)
run: .github/check-gofmt.sh
- name: Test
run: make test-coverage
- name: Build commands and examples
run: make build