Skip to content

Commit d2b3ec6

Browse files
committed
Run PHPUnit outside of Composer
1 parent 542a39b commit d2b3ec6

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PHP Composer
1+
name: PHPUnit
22

33
on: [push]
44

@@ -8,15 +8,11 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v1
11-
12-
- name: Validate composer.json and composer.lock
13-
run: composer validate
14-
working-directory: backend
1511

1612
- name: Install dependencies
1713
run: composer install --prefer-dist --no-progress --no-suggest
1814
working-directory: backend
1915

2016
- name: Run PHPUnit tests
21-
run: composer exec phpunit --configuration phpunit.xml --teamcity
17+
run: ./vendor/bin/phpunit -c phpunit.xml --teamcity
2218
working-directory: backend

0 commit comments

Comments
 (0)