Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Merge branch 'main' of github.com:soulteary/webhook #240

Merge branch 'main' of github.com:soulteary/webhook

Merge branch 'main' of github.com:soulteary/webhook #240

Workflow file for this run

name: "CodeQL"
on:
workflow_dispatch:
push:
branches: ["main"]
paths-ignore:
- "**/*.md"
- "**/*.txt"
- "example"
- "docker"
- "docs"
- "testdata"
pull_request:
branches: ["main"]
paths-ignore:
- "**/*.md"
- "**/*.txt"
- "example"
- "docker"
- "docs"
- "testdata"
schedule:
- cron: "0 0 * * *"
env:
GO_VERSION: "1.22"
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
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:
go-version: ${{ env.GO_VERSION }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"