Skip to content

Commit fb82157

Browse files
authored
Merge pull request #283 from php-school/actions-on-all-branches
Run actions on all branches/prs
2 parents a0c3359 + ec5dadc commit fb82157

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/php-workshop.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ name: PhpWorkshop
22

33
on:
44
push:
5-
branches: [ master ]
65
pull_request:
7-
branches: [ master ]
86

97
jobs:
108
build:

test/Process/DockerProcessFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function testCreateWithArgs(): void
7575

7676
$process = $factory->create($input);
7777
$cmd = "'/usr/local/bin/docker' 'compose' '-p' 'php8appreciate' '-f' '.docker/runtime/docker-compose.yml'";
78-
$cmd .= "'run' '--rm' '-w' '/solution' 'runtime' 'php' 'one' 'two'";
78+
$cmd .= " 'run' '--rm' '-w' '/solution' 'runtime' 'php' 'one' 'two'";
7979
static::assertSame($cmd, $process->getCommandLine());
8080
static::assertSame('/docker-dir', $process->getWorkingDirectory());
8181
}

0 commit comments

Comments
 (0)