Skip to content

Create all directories before creating a new file #101

Create all directories before creating a new file

Create all directories before creating a new file #101

Workflow file for this run

---
name: CodeQL
on:
pull_request:
types:
- opened
- synchronize
jobs:
codeql:
name: Run CodeQL Security Vulnerability Analysis
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["go"]
steps:
- name: Set up git repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"