Update to latest pg_query_go (#15) #6
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: Benchmark | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.txt' | |
- '**/*.yaml' | |
workflow_dispatch: | |
jobs: | |
bench: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '^1.21' | |
- run: go run mage benchall | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: results | |
path: build/*bench*.txt |