cloudflare/pint

Public

mirrored from https://github.com/cloudflare/pintAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.18.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/codeql.yml

35lines · modecode

1name: "CodeQL"
2
3on:
4 push:
5 branches: [main]
6 pull_request:
7 branches: [main]
8 schedule:
9 - cron: "0 11 * * 3"
10
11jobs:
12 analyze:
13 name: Analyze
14 runs-on: ubuntu-latest
15
16 strategy:
17 fail-fast: false
18 matrix:
19 language: ["go"]
20
21 steps:
22 - name: Checkout repository
23 uses: actions/checkout@v3
24
25 - name: Initialize CodeQL
26 uses: github/codeql-action/init@v2
27 with:
28 languages: ${{ matrix.language }}
29 queries: +security-and-quality
30
31 - name: Autobuild
32 uses: github/codeql-action/autobuild@v2
33
34 - name: Perform CodeQL Analysis
35 uses: github/codeql-action/analyze@v2
36