Fix install failure on mac arm 64 (#153) #30
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" | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/[email protected] | |
# Initializes the CodeQL tools for scanning. | |
- uses: github/codeql-action/init@v2 | |
with: | |
languages: python | |
config-file: ./.github/code-ql-config.yml | |
- uses: github/codeql-action/analyze@v2 | |
... |