Skip to content

Tag and Note Release workflow improvements #9

Tag and Note Release workflow improvements

Tag and Note Release workflow improvements #9

Workflow file for this run

name: CodeQL Analysis
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
analyze:
name: Analyze CodeQL
runs-on: macos-latest
permissions:
security-events: write
actions: read
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Initialize CodeQL
uses: github/codeql-action/init@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
with:
languages: swift
queries: security-and-quality
# Build the Swift package
- name: Build Swift package
run: swift build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
with:
category: "/language:swift"