Skip to content

v0.4.0 API Simplifications and Uniformity Changes #44

v0.4.0 API Simplifications and Uniformity Changes

v0.4.0 API Simplifications and Uniformity Changes #44

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
permissions:
security-events: write
packages: read
actions: read
contents: read
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
cache: false
go-version-file: go.mod
if: ${{ matrix.language == 'go' }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
timeout-minutes: 10
- name: Autobuild (${{ matrix.language }})
uses: github/codeql-action/autobuild@v3
timeout-minutes: 10
- name: Perform CodeQL Analysis (${{ matrix.language }})
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
timeout-minutes: 10