GitHub Action #2180
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 - CI-Report-Converter. | |
# | |
# 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/CI-Report-Converter | |
# | |
name: GitHub Action | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- 'master' | |
schedule: | |
- cron: '15 */8 * * *' | |
jobs: | |
# Trying to run current version of GH action | |
develop: | |
name: Develop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: JUnit.xml | |
uses: ./ | |
with: | |
input-format: junit | |
input-file: tests/fixtures/origin/phpunit/junit-nested.xml | |
- name: CheckStyle.xml | |
uses: ./ | |
with: | |
input-file: tests/fixtures/origin/phpcs/codestyle.xml | |
- name: PHP Mess Detector | |
uses: ./ | |
with: | |
input-format: phpmd-json | |
input-file: tests/fixtures/origin/phpmd/json.json | |
- name: PHP Magic Numbers Detector | |
uses: ./ | |
with: | |
input-format: phpmnd | |
input-file: tests/fixtures/origin/phpmnd/phpmnd.xml | |
- name: Psalm.json | |
uses: ./ | |
with: | |
input-format: psalm-json | |
input-file: tests/fixtures/origin/psalm/json.json | |
- name: PMD CPD.xml | |
uses: ./ | |
with: | |
input-format: pmd-cpd | |
input-file: tests/fixtures/origin/phpcpd/pmd-cpd.xml | |
# Check compatibility of fixtures with master branch in GH Marketplace | |
production: | |
name: Production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: JUnit.xml | |
uses: jbzoo/ci-report-converter@master | |
with: | |
input-format: junit | |
input-file: tests/fixtures/origin/phpunit/junit-nested.xml | |
- name: CheckStyle.xml | |
uses: jbzoo/ci-report-converter@master | |
with: | |
input-file: tests/fixtures/origin/phpcs/codestyle.xml | |
- name: PHP Mess Detector | |
uses: jbzoo/ci-report-converter@master | |
with: | |
input-format: phpmd-json | |
input-file: tests/fixtures/origin/phpmd/json.json | |
- name: PHP Magic Numbers Detector | |
uses: jbzoo/ci-report-converter@master | |
with: | |
input-format: phpmnd | |
input-file: tests/fixtures/origin/phpmnd/phpmnd.xml | |
- name: Psalm.json | |
uses: jbzoo/ci-report-converter@master | |
with: | |
input-format: psalm-json | |
input-file: tests/fixtures/origin/psalm/json.json | |
- name: PMD CPD.xml | |
uses: jbzoo/ci-report-converter@master | |
with: | |
input-format: pmd-cpd | |
input-file: tests/fixtures/origin/phpcpd/pmd-cpd.xml |