Picocrypt/.github/workflows/codeql-analysis.yml

30 lines
676 B
YAML
Raw Normal View History

2021-07-18 13:06:04 +12:00
name: "CodeQL"
on:
push:
paths:
- "src/Picocrypt.go"
2021-07-19 08:18:15 +12:00
pull_request:
branches: [ main ]
2021-07-18 13:06:04 +12: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:
- name: Checkout repository
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-13 08:45:39 +13:00
uses: github/codeql-action/analyze@v1