Skip to content

Commit

Permalink
CakePHP 5 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnizzardini authored Nov 22, 2024
1 parent dfea73c commit 4b951fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]
jobs:
build:
name: Docker Build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -14,11 +14,11 @@ jobs:
cp .docker/php.env.development .docker/php.env
cp .docker/mysql.env.development .docker/mysql.env
- name: Pull images
run: docker-compose pull
run: docker compose pull
- name: Build
run: docker-compose build --build-arg UID=$(id -u) --build-arg ENV=dev
run: docker compose build --build-arg UID=$(id -u) --build-arg ENV=dev
- name: Start
run: docker-compose up -d
run: docker compose up -d
- name: Wait for services
run: sleep 10
- name: Check CakePHP Welcome Page
Expand Down

0 comments on commit 4b951fb

Please sign in to comment.