1
0
mirror of https://github.com/HACKERALERT/Picocrypt.git synced 2025-01-01 00:47:21 +01:00
Picocrypt/.github/workflows/codeql-analysis.yml

31 lines
677 B
YAML
Raw Normal View History

2021-07-18 03:06:04 +02:00
name: "CodeQL"
on:
push:
paths:
- "src/Picocrypt.go"
2021-07-18 22:18:15 +02:00
pull_request:
branches: [ main ]
2021-07-18 03:06:04 +02:00
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['go']
steps:
2021-11-12 20:48:29 +01:00
- name: Checkout Repository
2021-07-18 03:06:04 +02:00
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
2021-11-12 20:48:29 +01:00
uses: github/codeql-action/analyze@v1