Skip to content

build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.2 to 2.27.3 #628

build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.2 to 2.27.3

build(deps): bump github.com/onsi/ginkgo/v2 from 2.27.2 to 2.27.3 #628

Workflow file for this run

---
name: test
on:
workflow_dispatch:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
build:
name: Build / ${{ matrix.arch }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch:
- amd64
- arm64
- s390x
- mips64le
- ppc64le
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: go.mod
- name: Build on ${{ matrix.arch }}
run: make GOARCH=${{ matrix.arch }}
test-linux:
name: Run tests on Linux amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: go.mod
- name: Install test binaries
run: |
go install github.com/modocache/gover@latest
go install github.com/mattn/goveralls@latest
- name: test
run: PATH=$PATH:$(go env GOPATH)/bin COVERALLS=1 make check
- name: Send coverage to coveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PATH=$PATH:$(go env GOPATH)/bin
gover
goveralls -coverprofile=gover.coverprofile -service=github
lint:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: go.mod
- run: make lint