Skip to content

Commit

Permalink
Simplified Docker Compose CI
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbyoung committed Dec 5, 2024
1 parent 809b182 commit 21e97e9
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,7 @@ jobs:
php-coveralls --coverage_clover=./.coverage/clover.xml --json_path=./coveralls-upload.json -v
docker-ci:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
include:
- php: '8.4'
stability: prefer-stable
name: Docker Compose ${{ matrix.php }} - ${{ matrix.stability }}
name: Docker Compose
steps:
- name: Check Out Code
uses: actions/checkout@v4
Expand All @@ -61,7 +55,7 @@ jobs:
- name: Start Docker Compose
run: docker compose up -d
- name: Install Dependencies
run: docker compose run --rm composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress --ignore-platform-reqs
run: docker compose run --rm composer update --prefer-stable --no-interaction --no-progress --ignore-platform-reqs
- name: Run Tests
run: docker compose run --rm composer phpunit
#- name: Run Linter
Expand Down

0 comments on commit 21e97e9

Please sign in to comment.