Skip to content

Bump codecov/codecov-action from 3.1.5 to 5.0.2 #1276

Bump codecov/codecov-action from 3.1.5 to 5.0.2

Bump codecov/codecov-action from 3.1.5 to 5.0.2 #1276

Workflow file for this run

name: Build on Push
on:
push:
paths-ignore:
- docs/**
- README.md
pull_request:
branches:
- main
paths-ignore:
- docs/**
- README.md
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
deployments: read
packages: none
env:
GO111MODULE: on
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: "go.mod"
cache: false
id: go
- name: Build
run: make
- name: Test
run: make test
- name: Build (linux)
env:
GOOS: linux
GOARCH: amd64
run: make
- name: Build (linux/arm64)
env:
GOOS: linux
GOARCH: arm64
run: make
- name: Build (linux/armv7)
env:
GOOS: linux
GOARCH: arm
GOARM: "7"
run: make
- name: Build (darwin)
env:
GOOS: darwin
GOARCH: amd64
run: make
- name: Build (darwin/arm)
env:
GOOS: darwin
GOARCH: arm64
run: make
- name: Build (windows)
env:
GOOS: windows
GOARCH: amd64
run: make
- name: Build (windows/arm)
env:
GOOS: windows
GOARCH: arm64
run: make
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2