File tree 4 files changed +19
-23
lines changed
4 files changed +19
-23
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ services:
5
5
context : .
6
6
dockerfile : Dockerfile
7
7
8
+ user : ${UID}:${GID}
9
+
8
10
volumes :
9
11
- type : bind
10
12
source : ${SOLUTION}
Original file line number Diff line number Diff line change 30
30
- name : Install Dependencies
31
31
run : composer update
32
32
33
- - name : Build docker image
34
- run : docker compose -p phpunit -f .docker/runtime/docker-compose.yml build
35
-
36
33
- name : Run phpunit tests
37
34
run : |
38
35
mkdir -p build/logs
Original file line number Diff line number Diff line change 5
5
use Faker \Generator ;
6
6
use PhpSchool \PhpWorkshop \Check \ComposerCheck ;
7
7
use PhpSchool \PhpWorkshop \Check \FunctionRequirementsCheck ;
8
- use PhpSchool \PhpWorkshop \Environment \CliTestEnvironment ;
9
8
use PhpSchool \PhpWorkshop \Exercise \AbstractExercise ;
10
9
use PhpSchool \PhpWorkshop \Exercise \CliExercise ;
11
10
use PhpSchool \PhpWorkshop \Exercise \ExerciseInterface ;
14
13
use PhpSchool \PhpWorkshop \ExerciseCheck \ComposerExerciseCheck ;
15
14
use PhpSchool \PhpWorkshop \ExerciseCheck \FunctionRequirementsExerciseCheck ;
16
15
use PhpSchool \PhpWorkshop \ExerciseDispatcher ;
17
- use PhpSchool \PhpWorkshop \ExerciseRunner \Context \CliContext ;
18
- use PhpSchool \PhpWorkshop \ExerciseRunner \Context \RunnerContext ;
19
16
use PhpSchool \PhpWorkshop \Solution \DirectorySolution ;
20
17
use PhpSchool \PhpWorkshop \Solution \SolutionInterface ;
21
18
You can’t perform that action at this time.
0 commit comments