Update README.md #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push] | |
jobs: | |
test-8-3-static: | |
name: Test 8.3 Static | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.3.ci .env | |
- run: make image test | |
test-8-2-static: | |
name: Test 8.2 Static | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.2.ci .env | |
- run: make image test PHP_VERSION=8.2 | |
test-8-1-static: | |
name: Test 8.1 Static | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.1.ci .env | |
- run: make image test PHP_VERSION=8.1 | |
test-8-0-static: | |
name: Test 8.0 Static | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.0.ci .env | |
- run: make image test PHP_VERSION=8.0 | |
test-dynamic: | |
name: Test 8.3 Dynamic | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.3-dynamic.ci .env | |
- run: make image test | |
test-8-2-dynamic: | |
name: Test 8.2 Dynamic | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.2-dynamic.ci .env | |
- run: make image test PHP_VERSION=8.2 | |
test-8-1-dynamic: | |
name: Test 8.1 Dynamic | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.1-dynamic.ci .env | |
- run: make image test PHP_VERSION=8.1 | |
test-8-0-dynamic: | |
name: Test 8.0 Dynamic | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.0-dynamic.ci .env | |
- run: make image test PHP_VERSION=8.0 | |
test-shared: | |
name: Test 8.3 Shared | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.3-shared.ci .env | |
- run: make image test | |
test-8-2-shared: | |
name: Test 8.2 Shared | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.2-shared.ci .env | |
- run: make image test PHP_VERSION=8.2 | |
test-8-1-shared: | |
name: Test 8.1 Shared | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.1-shared.ci .env | |
- run: make image test PHP_VERSION=8.1 | |
test-8-0-shared: | |
name: Test 8.0 Shared | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: npm install | |
- run: sudo apt update && sudo apt install docker-compose -y | |
- run: cp .circleci/.env_8.0-shared.ci .env | |
- run: make image test PHP_VERSION=8.0 |