-
Notifications
You must be signed in to change notification settings - Fork 196
64 lines (56 loc) · 1.92 KB
/
Copy pathapi-php-tests.yml
File metadata and controls
64 lines (56 loc) · 1.92 KB
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
name: PHP Tests
on:
pull_request
permissions: {}
jobs:
php:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: "PHP: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}"
permissions:
contents: read
strategy:
matrix:
php-versions: ['8.3']
nextcloud: ['stable34']
database: ['sqlite']
experimental: [false]
include:
- php-versions: 8.3
nextcloud: stable34
database: sqlite
experimental: false
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 2 # https://github.com/codecov/codecov-action/issues/190#issuecomment-790729633
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2
with:
php-version: ${{ matrix.php-versions }}
extensions: pdo_sqlite,pdo_mysql,pdo_pgsql,gd,zip
coverage: pcov
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
### Back to normal setup
- name: Set up server non MySQL
uses: SMillerDev/nextcloud-actions/setup-nextcloud@b13a04eb6a4e48972d31fa07559619843fcc2102 # main
with:
cron: true
version: ${{ matrix.nextcloud }}
database-type: ${{ matrix.database }}
- name: Prime app build
run: make
- name: Configure server with app
uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@b13a04eb6a4e48972d31fa07559619843fcc2102 # main
with:
app: 'news'
check-code: false
- name: Prep PHP tests
working-directory: ../server/apps/news
run: make php-test-dependencies
- name: Unittests
working-directory: ../server/apps/news
run: make unit-test