This repository was archived by the owner on Feb 17, 2026. It is now read-only.
perf: add parser pooling and query caching for concurrent parsing #39
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: Tests | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| - reopened | |
| - unlocked | |
| paths: | |
| - "src/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/**" | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out source code | |
| uses: actions/checkout@master | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.24 | |
| - name: Set up Just CLI | |
| uses: extractions/setup-just@v3 | |
| - name: Run tests | |
| run: just test |