-
Notifications
You must be signed in to change notification settings - Fork 235
76 lines (67 loc) · 1.68 KB
/
test.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Test
on: ['push', 'pull_request']
jobs:
build:
name: Builds container
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish container
run: |
docker build --cache-from ghcr.io/unionofrad/lithium -f .devcontainer/Dockerfile-php -t ghcr.io/unionofrad/lithium .devcontainer
docker push ghcr.io/unionofrad/lithium
test:
name: Runs Lithium tests
runs-on: ubuntu-latest
needs: ['build']
timeout-minutes: 10
container:
image: ghcr.io/unionofrad/lithium
services:
mysql:
image: bitnami/mysql:5
env:
MYSQL_ROOT_PASSWORD: password
MYSQL_AUTHENTICATION_PLUGIN: mysql_native_password
ports:
- 3306
redis:
image: redis
ports:
- 6379
mongodb:
image: mongo
ports:
- 27017
memcached:
image: memcached
ports:
- 11211
couchdb:
image: couchdb:2
ports:
- 5984
postgres:
image: postgres
env:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Run tests
run: |
./tests/ci/install.sh
./tests/ci/test.sh
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
# with:
# sudo: false