ci: Copy the src directory

This commit is contained in:
Oliver Davies 2021-08-25 01:30:52 +01:00
parent 92f3865ee7
commit 46d1499e9d
2 changed files with 2 additions and 1 deletions

View file

@ -17,7 +17,7 @@ final class TalkExtensionTest extends TestCase
/** @test */
public function it_returns_zero_if_there_are_no_talks(): void
{
$this->assertSame(0, $this->subject->getPastTalkCount([]));
$this->assertSame(0, $this->subject->getPastTalkCount());
}
/** @test */

View file

@ -6,6 +6,7 @@ COPY composer.* ./
RUN composer install --no-dev
COPY app app
COPY source source
COPY src src
RUN sculpin generate --env prod
FROM node:14 AS assets