Skip to content

Bump codecov/codecov-action from 4 to 5 #126

Bump codecov/codecov-action from 4 to 5

Bump codecov/codecov-action from 4 to 5 #126

Workflow file for this run

name: CI.build-test-lint
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
branches:
- master
- main
permissions:
contents: read
jobs:
build-test-lint:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.18'
- name: Build
run: make build
- name: Test
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.58