forked from oraoto/pib
-
-
Notifications
You must be signed in to change notification settings - Fork 50
38 lines (38 loc) · 1.16 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: sudo bash -c 'curl -SL https://github.com/docker/compose/releases/download/v2.27.2/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose'
- run: npm install
- run: cp .circleci/.env_8.3.ci .env
- run: make lib/lib/libicudata.a
- run: make test
# test-8-2:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@v4
# - run: npm install
# - run: cp .circleci/.env_8.2.ci .env
# - run: make test PHP_VERSION=8.2
# test-8-1:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@v4
# - run: npm install
# - run: cp .circleci/.env_8.1.ci .env
# - run: make test PHP_VERSION=8.1
# test-8-0:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@v4
# - run: npm install
# - run: cp .circleci/.env_8.0.ci .env
# - run: make test PHP_VERSION=8.0