Improve test coverage #12
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: Demo | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- 'master' | |
env: | |
COLUMNS: 120 | |
TERM_PROGRAM: Hyper | |
jobs: | |
pure-php: | |
name: Pure PHP | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
tools: composer | |
- name: Build the Project | |
run: make update | |
- name: Validate CSV (default is table) | |
run: make demo-github | |
continue-on-error: true | |
- name: Validate CSV (text) | |
run: OUTPUT=text make demo-github | |
continue-on-error: true | |
- name: Validate CSV (github) | |
run: OUTPUT=github make demo-github | |
continue-on-error: true | |
- name: Validate CSV (gitlab) | |
run: OUTPUT=gitlab make demo-github | |
continue-on-error: true | |
- name: Validate CSV (teamcity) | |
run: OUTPUT=teamcity make demo-github | |
continue-on-error: true | |
- name: Validate CSV (junit) | |
run: OUTPUT=junit make demo-github | |
continue-on-error: true |