Reduce level of verbose and option to disable ansi in action.yml
#24
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
# | |
# JBZoo Toolbox - Csv-Blueprint. | |
# | |
# This file is part of the JBZoo Toolbox project. | |
# For the full copyright and license information, please view the LICENSE | |
# file that was distributed with this source code. | |
# | |
# @license MIT | |
# @copyright Copyright (C) JBZoo.com, All rights reserved. | |
# @see https://github.com/JBZoo/Csv-Blueprint | |
# | |
name: Stress Test | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- 'master' | |
jobs: | |
stress-test: | |
name: Benchmark | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
- name: Build project | |
run: make build --no-print-directory | |
- name: Create random huge CSV files | |
run: make bench-create-csv --no-print-directory | |
- name: Building Docker Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: false | |
tags: jbzoo/csv-blueprint:local | |
- name: 🔥 Benchmark with Docker 🔥 | |
run: make bench-docker --no-print-directory |