fix(ui): Carlok #22β#25 locale charts, export, tooltips, Rank #239
Workflow file for this run
This file contains hidden or 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
| # CodeQL: static analysis for security and quality. | |
| # Results appear in the Security tab (Code scanning alerts). | |
| # https://docs.github.com/en/code-security/code-scanning | |
| name: CodeQL | |
| permissions: | |
| security-events: write | |
| actions: read | |
| contents: read | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: go | |
| - name: Build | |
| run: go build -v ./... | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |