1
0
Fork 0
mirror of https://github.com/HACKERALERT/Picocrypt.git synced 2024-09-20 01:36:55 +00:00
Picocrypt/.github/workflows/codeql-analysis.yml

31 lines
677 B
YAML
Raw Normal View History

2021-07-18 01:06:04 +00:00
name: "CodeQL"
on:
push:
paths:
- "src/Picocrypt.go"
2021-07-18 20:18:15 +00:00
pull_request:
branches: [ main ]
2021-07-18 01:06:04 +00: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 19:48:29 +00:00
- name: Checkout Repository
2021-07-18 01:06:04 +00: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 19:48:29 +00:00
uses: github/codeql-action/analyze@v1