-
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (25 loc) · 641 Bytes
/
build.yml
File metadata and controls
33 lines (25 loc) · 641 Bytes
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
---
on:
pull_request: &ignore-paths
paths-ignore:
- ".gitattributes"
- ".gitignore"
- "CHANGELOG.md"
- "docs/**"
- "README.md"
push: *ignore-paths
name: build
permissions:
contents: read
jobs:
franken-php:
runs-on: ubuntu-latest
steps:
- name: Checkout.
uses: actions/checkout@v5
- name: Build and start containers.
run: docker compose up -d --build --wait
- name: Codeception build.
run: docker exec yii2-frankenphp vendor/bin/codecept build
- name: Codeception tests.
run: docker exec yii2-frankenphp vendor/bin/codecept run