Skip to content

Commit

Permalink
--
Browse files Browse the repository at this point in the history
  • Loading branch information
lyrixx committed Mar 15, 2024
1 parent 008c5af commit be1b980
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .castor/docker.php
Expand Up @@ -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"?');
Expand Down
25 changes: 13 additions & 12 deletions .github/workflows/ci.yml
Expand Up @@ -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 }}
Expand Down

0 comments on commit be1b980

Please sign in to comment.