-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (28 loc) · 905 Bytes
/
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
name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: '8.1'
- name: Run Coding Standards
uses: php-actions/composer@v6
with:
command: cs
- name: Run Static Analysis
uses: php-actions/composer@v6
with:
command: static
- name: Run PHPUnit
uses: php-actions/composer@v6
with:
command: test