-
Notifications
You must be signed in to change notification settings - Fork 10
67 lines (54 loc) · 1.27 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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
build:
env:
APP_ENV: test
strategy:
matrix:
php: [ '7.3', '7.4', '8.0', '8.1' ]
runPhan: [ true ]
include:
- php: '8.2'
runPhan: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{matrix.php}}
coverage: none
extensions: ast
- name: Read .nvmrc
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
id: nvm
- name: Set up Node ${{ steps.nvm.outputs.NODE_VERSION }}
uses: actions/setup-node@v2
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Install tesseract
run: |
sudo apt-get update
sudo apt-get install -y tesseract-ocr-all
- name: Install wikimedia-ocr
run: |
composer install
npm ci
- name: Test
run: |
composer test-common
npm run test
npm run build
git status
git status | grep "nothing to commit, working tree clean"
- name: Test (Phan)
if: ${{ matrix.runPhan }}
run: composer phan