Bump docker/build-push-action from 5 to 6 #37
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
# Tests MEgen on every push (excluding master branch) and pull request | |
name: Test | |
on: | |
push: | |
branches-ignore: | |
- master | |
pull_request: | |
jobs: | |
test: | |
name: jMeter tests | |
runs-on: ubuntu-latest | |
services: | |
megen: | |
image: php:8.0-apache | |
ports: | |
- 80:80 | |
volumes: | |
- ${{ github.workspace }}:/var/www/html/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run JMeter Tests | |
uses: rbhadti94/apache-jmeter-action@v0.7.0 | |
with: | |
testFilePath: tests/all.jmx | |
outputReportsFolder: reports/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: jmeter-test-results | |
path: reports/ |