Skip to content

Commit

Permalink
New workflow steps
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Apr 22, 2021
1 parent fada204 commit 8b90cfa
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 53 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/codestyle.yml

This file was deleted.

23 changes: 19 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -42,8 +42,23 @@ jobs:
coverage: none
tools: composer:v2

- name: Install dependencies
run: make update
- name: Build the Project
run: make update --no-print-directory

- name: Execute Unit Tests
run: make test-all
- name: PHPUnit Tests
run: make test --no-print-directory

- name: Code Quality
run: make codestyle --no-print-directory

- name: PHPBench - Performance Report
run: make test-performance-travis --no-print-directory

- name: Build All Reports at Once
run: make report-all --no-print-directory

- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
with:
report_paths: '**/build/coverage_xml/*.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8b90cfa

Please sign in to comment.