Skip to content

Bump GitHub workflow actions #55

Bump GitHub workflow actions

Bump GitHub workflow actions #55

Workflow file for this run

name: go
on: [push, pull_request]
jobs:
build_and_test:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- run: go version
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- run: go test -v -coverprofile=profile.cov ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov