Skip to content

Merge branch 'chains/cheqd/testnet' into chains/cheqd/mainnet #82

Merge branch 'chains/cheqd/testnet' into chains/cheqd/mainnet

Merge branch 'chains/cheqd/testnet' into chains/cheqd/mainnet #82

Workflow file for this run

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