added new line to json file #357
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Lint" | |
on: [push, pull_request] | |
jobs: | |
golangci: | |
name: "Lint Go" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54 | |
codeql: | |
name: "Analyze with CodeQL" | |
runs-on: "ubuntu-latest" | |
permissions: | |
actions: "read" | |
contents: "read" | |
security-events: "write" | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["go"] | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: "github/codeql-action/init@v1" | |
with: | |
languages: "${{ matrix.language }}" | |
- uses: "github/codeql-action/autobuild@v1" | |
- uses: "github/codeql-action/analyze@v1" |