-
Notifications
You must be signed in to change notification settings - Fork 32
77 lines (71 loc) · 2.42 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the dev branch
push:
branches: [ 2.x, 1.x ]
pull_request:
branches: [ 2.x, 1.x ]
release:
# Only use the types keyword to narrow down the activity types that will trigger your workflow.
types: [published, created, edited]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# Analyse code by PHPStan
phpstan:
name: PHPStan
runs-on: ubuntu-latest
# This workflow is only of value to the andrew-svirin/ebics-client-php repository and
# would always fail in forks
if: github.repository == 'andrew-svirin/ebics-client-php'
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Composer Install
run: composer install --no-scripts --no-progress --ansi
- name: Run phpstan
run: composer code-analyse
# Style code by Code Sniffer
phpcs:
name: PHPCS
runs-on: ubuntu-latest
# This workflow is only of value to the andrew-svirin/ebics-client-php repository and
# would always fail in forks
if: github.repository == 'andrew-svirin/ebics-client-php'
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Composer Install
run: composer install --no-scripts --no-progress --ansi
- name: Run phpcs
run: composer code-style
# Test code by PHPUnit
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
# This workflow is only of value to the andrew-svirin/ebics-client-php repository and
# would always fail in forks
if: github.repository == 'andrew-svirin/ebics-client-php'
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
- name: Composer Install
run: composer install --no-scripts --no-progress --ansi
- name: Prepare data
run: unzip -P ${{ secrets.PWD }} ./tests/_data.zip -d .
- name: Run phpunit
env:
PASSWORD: ${{ secrets.PWD }}
run: composer code-test