diff --git a/.castor/docker.php b/.castor/docker.php index fc4088c..e8ade6d 100644 --- a/.castor/docker.php +++ b/.castor/docker.php @@ -83,7 +83,7 @@ function up(): void io()->title('Starting infrastructure'); try { - docker_compose(['up', '--detach', '--no-build']); + docker_compose(['--ansi', 'never', 'up', '--detach', '--no-build']); } catch (ExceptionInterface $e) { io()->error('An error occured while starting the infrastructure.'); io()->note('Did you forget to run "castor docker:build"?'); diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4bda5b..71beeed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,24 +17,25 @@ env: CASTOR_CONTEXT: ci jobs: - check-dockerfiles: - name: Check Dockerfile - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Check php/Dockerfile - uses: hadolint/hadolint-action@v3.1.0 - with: - dockerfile: infrastructure/docker/services/php/Dockerfile + # check-dockerfiles: + # name: Check Dockerfile + # runs-on: ubuntu-latest + # steps: + # - name: Checkout + # uses: actions/checkout@v4 + + # - name: Check php/Dockerfile + # uses: hadolint/hadolint-action@v3.1.0 + # with: + # dockerfile: infrastructure/docker/services/php/Dockerfile ci: name: Test with PHP ${{ matrix.php-version }} strategy: fail-fast: false matrix: - php-version: ["8.1", "8.2", "8.3"] + # php-version: ["8.1", "8.2", "8.3"] + php-version: ["8.1"] runs-on: ubuntu-latest env: DS_PHP_VERSION: ${{ matrix.php-version }}