Add otel http and runtime metrics #1
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: Verify scripts Workflow | |
| on: [push] | |
| jobs: | |
| basic_k6_test: | |
| name: k6 test run - verify scripts example | |
| runs-on: ubuntu-latest | |
| services: | |
| quickpizza: | |
| image: ghcr.io/grafana/quickpizza-local:latest@sha256:9067de15119819a3ef17676b3245279937d9d9ef50e81a2ba0a8a30095d7bfce # zizmor: ignore[unpinned-images] | |
| ports: | |
| - 3333:3333 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| - name: Setup k6 | |
| uses: grafana/setup-k6-action@ffe7d7290dfa715e48c2ccc924d068444c94bde2 # v1 | |
| - name: Verify test script | |
| uses: grafana/run-k6-action@a15e2072ede004e8d46141e33d7f7dad8ad08d9d # v1 | |
| with: | |
| path: | | |
| ./k6/foundations/01.basic.js | |
| only-verify-scripts: true |