Skip to content

Commit

Permalink
Move lint before tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Feb 23, 2021
1 parent 3eac924 commit 1ee1864
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-application.yaml
Expand Up @@ -75,6 +75,10 @@ jobs:
- name: Bootstrap test environment
run: composer bootstrap-test-environment

- name: Lint Code
if: ${{ matrix.lint }}
run: composer lint

- name: Execute test cases
if: matrix.coverage == false
run: composer test
Expand All @@ -83,10 +87,6 @@ jobs:
if: ${{ matrix.coverage }}
run: composer test-with-coverage

- name: Lint Code
if: ${{ matrix.lint }}
run: composer lint

- name: Upload code coverage to coveralls
if: ${{ matrix.coverage }}
run: |
Expand Down

0 comments on commit 1ee1864

Please sign in to comment.