Skip to content

Bump github/codeql-action/analyze from 4.36.2 to 4.36.3 #907

Bump github/codeql-action/analyze from 4.36.2 to 4.36.3

Bump github/codeql-action/analyze from 4.36.2 to 4.36.3 #907

Workflow file for this run

name: Go
on:
push:
pull_request:
schedule:
- cron: '6 15 * * SUN'
permissions: {}
jobs:
build:
strategy:
matrix:
go-version: [1.25.x, 1.26.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
name: "Build ${{ matrix.go-version }} test on ${{ matrix.platform }}"
steps:
- name: Set up Go 1.x
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...