Update xk6 to version v0.12.1 #6
Workflow file for this run
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: "Verify generated files" | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- versions.yaml | |
- Dockerfile.tmpl | |
workflow_dispatch: | |
jobs: | |
validate: | |
name: Validate pull request | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Verify generated files | |
run: | | |
# Generate Dockerfile | |
make Dockerfile | |
# Check if the generated Dockerfile is different from the one in the repository | |
git diff --no-ext-diff --quiet |