This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
56 lines (46 loc) · 1.44 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
name: yii2-openapi
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
if: "!contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'ci skip')"
name: yii2-openapi (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
env:
DB_USERNAME: dbuser
DB_PASSWORD: dbpass
DB_CHARSET: utf8
strategy:
fail-fast: false
matrix:
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
# TODO use cache
steps:
- uses: actions/checkout@v3
- name: Set PHP Version
run: echo "PHP_VERSION=${{ matrix.php-versions }}" > .env
# Run every tests inside Docker container
- name: Docker Compose Setup
uses: ndeloof/install-compose-action@v0.0.1
with:
# version: v3.5 # defaults to 'latest'
legacy: true # will also install in PATH as `docker-compose`
- name: Clean
run: make clean_all
- name: docker-compose up
run: make up
- name: Install Docker and composer dependencies
run: docker-compose exec php php -v && make installdocker
- name: Migrate
run: make UID=0 migrate
- name: Check style
if: "!contains(matrix.php-versions, '8.')"
run: make check-style-from-host
- name: Run tests
run: make UID=0 testdocker