Skip to content

GODRIVER-3573: Remove old duplicate compilation test #2948

GODRIVER-3573: Remove old duplicate compilation test

GODRIVER-3573: Remove old duplicate compilation test #2948

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- "v1"
- "cloud-*"
- "master"
- "release/*"
- "feature/*"
pull_request:
branches:
- "v1"
- "cloud-*"
- "master"
- "release/*"
- "feature/*"
schedule:
- cron: "36 17 * * 0"
workflow_call:
inputs:
ref:
required: true
type: string
jobs:
analyze:
name: Analyze (go)
runs-on: "ubuntu-latest"
timeout-minutes: 360
permissions:
# required for all workflows
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.25.0"
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: go
build-mode: manual
- name: Install Taskfile support
uses: arduino/setup-task@v2
- name: Install libmongocrypt
run: task install-libmongocrypt
- name: Build (CodeQL-instrumented)
shell: bash
env:
GOTOOLCHAIN: local
run: |
# TODO(GODRIVER-3723): Run using taskfile targets.
go build ./...
go build ${BUILD_TAGS} ./...
go test -short ${BUILD_TAGS} -run ^$$ ./...
go test -v ./internal/test/compilecheck -run '^TestCompileCheck/golang:1\.19$'
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:go"