Skip to content

lint and test in ns cloud #1

lint and test in ns cloud

lint and test in ns cloud #1

Workflow file for this run

# Broadly based on example Github action from
# https://github.com/github/codeql-action#usage
name: codeql
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions
# https://github.com/github/codeql-action/issues/572
permissions:
actions: read
contents: read
pull-requests: read
security-events: write
on:
push:
branches:
- main
jobs:
codeql:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup-go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: initialize
uses: github/codeql-action/init@v2
with:
# Limit analysis to Go for now.
# Available languages: https://docs.github.com/en/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#changing-the-languages-that-are-analyzed
languages: go
- name: autobuild
uses: github/codeql-action/autobuild@v2
- name: analyze
uses: github/codeql-action/analyze@v2