Skip to content

release: prep for v0.44.3 (#7173) #17049

release: prep for v0.44.3 (#7173)

release: prep for v0.44.3 (#7173) #17049

Workflow file for this run

name: Test
on:
# Run tests on main just so the module and build cache can be saved and used
# in PRs. This speeds up the time it takes to test PRs dramatically.
# (More information on https://docs.github.com/en/[email protected]/actions/using-workflows/caching-dependencies-to-speed-up-workflows)
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
name: Test
strategy:
matrix:
platform: [macos-latest-xlarge]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Set up Go 1.24
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
with:
go-version: "1.24"
cache: true
- name: Test
run: make GO_TAGS="nodocker" test