Skip to content

docs: Remove Slack from README #430

docs: Remove Slack from README

docs: Remove Slack from README #430

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- main
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
codeql-analysis:
name: "CodeQL Analysis"
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Setup CodeQL
uses: github/codeql-action/init@v3
with:
languages: 'go'
queries: security-and-quality
- uses: actions/setup-go@v5
with:
go-version: 1.21
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Required to fetch version
- name: Build
run: make proto-gen build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3