fix(stdlib): unescape doubled quotes in csv.parse() quoted fields (#2239) #1370
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
| name: CodeQL Security Scan | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| schedule: | |
| - cron: '0 3 * * 0' # weekly on Sunday at 03:00 UTC | |
| jobs: | |
| analyze: | |
| name: Analyze (CodeQL) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23' | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: go, c-cpp | |
| queries: security-and-quality | |
| - name: Build Go CLI | |
| run: | | |
| go env | |
| go test ./... || true | |
| - name: Build Grayscale compiler | |
| run: | | |
| cd grayc | |
| make clean | |
| make build | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@v4 |