fix: Panic with Router when Registering Routes for Profiling Pull Mod… #102
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: Basic Test Workflow | |
| on: [push] | |
| jobs: | |
| basic_k6_test: | |
| name: k6 test run - basic example | |
| runs-on: ubuntu-latest | |
| services: | |
| quickpizza: | |
| image: ghcr.io/grafana/quickpizza-local:latest # zizmor: ignore[unpinned-images] | |
| ports: | |
| - 3333:3333 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup k6 | |
| uses: grafana/setup-k6-action@v1 | |
| - name: Run k6 test | |
| uses: grafana/run-k6-action@v1 | |
| with: | |
| path: | | |
| ./k6/foundations/01.basic.js | |
| flags: --duration 5s |