Skip to content

Commit

Permalink
ci: split workflow into separate steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Aug 12, 2020
1 parent 153978a commit 534a6b2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,14 @@ jobs:
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }}

- name: Analyze & test
run: |
composer br:lint
composer br:analyze
composer br:test:coverage:ci -- --coverage-text
- name: Enforce coding standards
run: composer br:lint

- name: Analyze the code for type safety issues, etc.
run: composer br:analyze

- name: Run unit tests
run: composer br:test:coverage:ci -- --coverage-text

- name: Publish code coverage
uses: paambaati/codeclimate-action@v2.6.0 # https://github.com/paambaati/codeclimate-action
Expand Down

0 comments on commit 534a6b2

Please sign in to comment.