Skip to content

chore(deps): update actions/checkout action to v4 #1350

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #1350

Workflow file for this run

name: Build
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
pull_request:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-22.04
strategy:
matrix:
go: [ '1.20', '1.19', '1.18' ]
include:
- go: '1.20'
lint: true
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/[email protected]
# Running golangci-lint
- name: Linting
if: matrix.lint
uses: golangci/[email protected]
with:
version: v1.51.2
# Install Go
- name: Setup go
uses: actions/[email protected]
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
# We need GCC because of the "go test -race"
# env:
# CGO_ENABLED: 0
run: |
apt-get update && apt-get install gcc -y
go test -parallel 20 -v -race -coverprofile=coverage.txt -covermode=atomic ./...
bash <(curl -s https://codecov.io/bash)
# For github to have a unique status check name
build-status:
needs: build
runs-on: ubuntu-22.04
steps:
- run: echo 'All good'