Refactor CSV reader to support multiple files with improved concurrency performance #61
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: pull_request | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - "**.md" | |
| - ".gitignore" | |
| jobs: | |
| package: | |
| name: package and upload release assets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.24.11 | |
| - name: build | |
| env: | |
| CGO_ENABLED: 0 | |
| run: | | |
| make build-dev | |
| ls -lh k6* |