Close sessions on each operation #54
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: Run k6 Stress Tests | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
k6-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build Docker image | |
run: docker build -t stress-k6 ./api/tests/stress | |
- name: Run k6 tests | |
run: docker run --rm stress-k6 |