Skip to content

ci-cd: bump workflow and go version #114

ci-cd: bump workflow and go version

ci-cd: bump workflow and go version #114

Workflow file for this run

name: Test and coverage
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run coverage
run: make coverage
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)