Skip to content

Bump the all-go-mod-patch-and-minor group across 1 directory with 38 updates #2886

Bump the all-go-mod-patch-and-minor group across 1 directory with 38 updates

Bump the all-go-mod-patch-and-minor group across 1 directory with 38 updates #2886

Workflow file for this run

name: build-and-unit-test
on:
push:
tags:
- v*
branches:
- main
pull_request:
paths:
- '**'
permissions:
contents: read
pull-requests: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: "1.25"
check-latest: true
cache: true
- name: build application
run: make build-cross-platform
test:
name: unit-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: "1.25"
check-latest: true
cache: true
- name: test application
run: make test