-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (33 loc) · 921 Bytes
/
php.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
name: PHP
on:
pull_request: {}
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Install Composer dependencies
uses: litusproject/composer-install-action@main
- name: Run PHP_CodeSniffer
if: ${{ always() }}
uses: litusproject/php-codesniffer-action@main
- name: Run PHPStan
if: ${{ always() }}
uses: litusproject/phpstan-action@main
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Bring up containers
run: docker-compose up -d
- name: Initialise Litus
run: docker-compose run --rm php-cli init
- name: Test response
run: curl -fsSL -I --retry 5 --retry-delay 0 --retry-max-time 30 http://localhost:8080