Skip to content

chore(deps): update registry.access.redhat.com/ubi9/go-toolset docker tag to v1.24.6-1760420453 #28

chore(deps): update registry.access.redhat.com/ubi9/go-toolset docker tag to v1.24.6-1760420453

chore(deps): update registry.access.redhat.com/ubi9/go-toolset docker tag to v1.24.6-1760420453 #28

Workflow file for this run

name: Test and coverage
on:
push:
paths:
- '**.go'
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: go get
run: go get ./...
- name: go mod tidy
run: go mod tidy
- name: Run tests
run: make test