Skip to content

Commit

Permalink
Install docker-compose in github
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorris committed Aug 1, 2024
1 parent 417f6e6 commit 513321b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.3.ci .env
- run: make image test

Expand All @@ -18,6 +19,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.2.ci .env
- run: make image test PHP_VERSION=8.2

Expand All @@ -28,6 +30,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.1.ci .env
- run: make image test PHP_VERSION=8.1

Expand All @@ -38,6 +41,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.0.ci .env
- run: make image test PHP_VERSION=8.0

Expand All @@ -49,6 +53,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.3-dynamic.ci .env
- run: make image test

Expand All @@ -59,6 +64,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.2-dynamic.ci .env
- run: make image test PHP_VERSION=8.2

Expand All @@ -69,6 +75,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.1-dynamic.ci .env
- run: make image test PHP_VERSION=8.1

Expand All @@ -79,6 +86,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.0-dynamic.ci .env
- run: make image test PHP_VERSION=8.0

Expand All @@ -90,6 +98,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.3-shared.ci .env
- run: make image test

Expand All @@ -100,6 +109,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.2-shared.ci .env
- run: make image test PHP_VERSION=8.2

Expand All @@ -110,6 +120,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.1-shared.ci .env
- run: make image test PHP_VERSION=8.1

Expand All @@ -120,5 +131,6 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- run: npm install
- run: apt update && apt install docker-compose -y
- run: cp .circleci/.env_8.0-shared.ci .env
- run: make image test PHP_VERSION=8.0

0 comments on commit 513321b

Please sign in to comment.