Skip to content

update to go 1.24 and replace makefile with taskfile #6

update to go 1.24 and replace makefile with taskfile

update to go 1.24 and replace makefile with taskfile #6

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches:
- master
- main
- beta*
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Build
run: go build .
- name: Test With Coverage
run: go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
- name: Run Vet & Lint
run: |
go vet ./...