immich-exporter/.github/workflows/codeql-analysis.yml

40 lines
769 B
YAML
Raw Normal View History

name: CodeQL
on:
workflow_dispatch:
push:
2024-01-15 15:14:54 +01:00
branches: ["main"]
pull_request:
2024-01-15 15:14:54 +01:00
branches: ["main"]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
2024-01-15 15:14:54 +01:00
language: ["go"]
steps:
2024-01-15 15:14:54 +01:00
- name: Checkout repo
uses: actions/checkout@v4
2024-01-15 15:14:54 +01:00
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
2024-01-15 15:14:54 +01:00
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"