2020-05-31 20:36:09 +08:00
|
|
|
name: Tests
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Composer:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
|
|
run: composer validate
|
|
|
|
- name: Install dependencies
|
2021-05-30 15:17:23 +08:00
|
|
|
run: composer install --prefer-dist --no-dev
|
2020-05-31 20:36:09 +08:00
|
|
|
PHPunit:
|
2020-05-31 21:53:57 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-05-31 20:36:09 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
|
|
|
|
name: PHP ${{ matrix.php-versions }} unit tests on ${{ matrix.operating-system }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2021-10-02 06:27:57 +08:00
|
|
|
|
2020-05-31 20:36:09 +08:00
|
|
|
- name: Setup PHP
|
2020-05-31 21:53:57 +08:00
|
|
|
uses: shivammathur/setup-php@v2
|
2020-05-31 20:36:09 +08:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
2020-05-31 21:53:57 +08:00
|
|
|
extensions: gd, sqlite3
|
2021-10-02 06:27:57 +08:00
|
|
|
|
|
|
|
# composer cache
|
2020-05-31 21:10:30 +08:00
|
|
|
- name: Remove composer lock
|
|
|
|
run: rm composer.lock
|
2021-10-02 06:27:57 +08:00
|
|
|
- name: Get composer cache directory
|
|
|
|
id: composer-cache
|
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
# http://man7.org/linux/man-pages/man1/date.1.html
|
|
|
|
# https://github.com/actions/cache#creating-a-cache-key
|
|
|
|
- name: Get Date
|
|
|
|
id: get-date
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")"
|
|
|
|
shell: bash
|
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
2021-10-02 06:32:57 +08:00
|
|
|
key: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/composer.json') }}
|
2021-10-02 06:29:48 +08:00
|
|
|
restore-keys: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-
|
2021-10-02 06:27:57 +08:00
|
|
|
|
|
|
|
# composer
|
2020-05-31 20:45:25 +08:00
|
|
|
- name: Setup PHPunit
|
|
|
|
run: composer install -n
|
2021-05-29 04:39:50 +08:00
|
|
|
- name: Install Google Cloud Storage
|
|
|
|
run: composer require google/cloud-storage
|
2021-10-02 06:27:57 +08:00
|
|
|
|
|
|
|
# testing
|
2020-05-31 20:42:11 +08:00
|
|
|
- name: Run unit tests
|
2020-05-31 21:24:10 +08:00
|
|
|
run: ../vendor/bin/phpunit --no-coverage
|
2020-05-31 20:42:11 +08:00
|
|
|
working-directory: tst
|
2020-05-31 20:36:09 +08:00
|
|
|
Mocha:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: '12'
|
|
|
|
- name: Setup Mocha
|
|
|
|
run: npm install -g mocha
|
|
|
|
- name: Setup Node modules
|
2020-05-31 20:42:11 +08:00
|
|
|
run: npm install
|
|
|
|
working-directory: js
|
2020-05-31 20:36:09 +08:00
|
|
|
- name: Run unit tests
|
|
|
|
run: mocha
|
2020-05-31 20:42:11 +08:00
|
|
|
working-directory: js
|
|
|
|
|