Add command to generate jsonschema for limayaml #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL Advanced" | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
schedule: | |
- cron: '33 19 * * 5' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
analyze: | |
name: Analyze (${{ matrix.language }}) | |
runs-on: 'ubuntu-latest' | |
permissions: | |
security-events: write | |
# required to fetch internal or private CodeQL packs | |
packages: read | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- language: go | |
build-mode: autobuild | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13 | |
with: | |
languages: ${{ matrix.language }} | |
build-mode: ${{ matrix.build-mode }} | |
- if: matrix.build-mode == 'manual' | |
shell: bash | |
run: | | |
echo 'If you are using a "manual" build mode for one or more of the' \ | |
'languages you are analyzing, replace this with the commands to build' \ | |
'your code, for example:' | |
echo ' make bootstrap' | |
echo ' make release' | |
exit 1 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@f779452ac5af1c261dce0346a8f964149f49322b # v3.26.13 | |
with: | |
category: "/language:${{matrix.language}}" |