Skip to content

Commit

Permalink
chore: create dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bachilli committed Nov 3, 2023
1 parent c9a5c74 commit a50fd9d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
###
test:
phpunit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -35,7 +35,18 @@ jobs:
run: composer update --prefer-dist --no-progress --no-suggest --no-interaction ${{ matrix.composer-flags }}

- run: composer test

phpunit-tests-pass:
needs: [ phpunit-tests ]
if: ${{ !cancelled() }}
name: 'PHPUnit - Tests and Coverage: PASS'
runs-on: ubuntu-latest
steps:
- run: exit 0

sonarcloud:
needs: [ phpunit-tests-pass ]
if: ${{ always() && !cancelled() && github.event_name != 'merge_group' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit a50fd9d

Please sign in to comment.