-
-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (45 loc) · 1.03 KB
/
ci.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
name: Continuous Integration
'on':
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 0 * * MON'
permissions:
contents: read
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-latest
env:
BUILDKIT_PROGRESS: plain
CI: 1
steps:
-
uses: actions/checkout@v3
# Setup
-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
tools: jolicode/castor
-
name: 'Build and start the infrastructure'
run: 'castor start && sleep 5'
-
name: 'Test the infrastructure is working'
run: |
set -e
set -o pipefail
curl --fail --insecure --silent -H "Host: 3dfollow.test" https://127.0.0.1 | grep "3D Follow"
-
name: 'Run tests'
run: castor qa:phpunit
-
name: 'Run PHPStan'
run: castor qa:phpstan
-
name: 'Run PHP-CS-Fixer'
run: castor qa:phpcsfixer