2020-05-31 14:36:09 +02:00
|
|
|
name: Tests
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
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 09:17:23 +02:00
|
|
|
run: composer install --prefer-dist --no-dev
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
PHPunit:
|
2020-05-31 15:53:57 +02:00
|
|
|
runs-on: ubuntu-latest
|
2020-05-31 14:36:09 +02: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 }}
|
2021-10-02 00:38:21 +02:00
|
|
|
env:
|
|
|
|
extensions: gd, sqlite3
|
2021-10-02 01:01:24 +02:00
|
|
|
extensions-cache-key-name: phpextensions
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
steps:
|
2021-10-02 00:41:54 +02:00
|
|
|
|
|
|
|
# let's get started!
|
2020-05-31 14:36:09 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2021-10-02 00:27:57 +02:00
|
|
|
|
2021-10-02 00:38:21 +02:00
|
|
|
# cache PHP extensions
|
|
|
|
- name: Setup cache environment
|
|
|
|
id: extcache
|
|
|
|
uses: shivammathur/cache-extensions@v1
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
extensions: ${{ env.extensions }}
|
2021-10-02 01:01:24 +02:00
|
|
|
key: ${{ runner.os }}-${{ env.extensions-cache-key }}
|
2021-10-02 00:38:21 +02:00
|
|
|
|
|
|
|
- name: Cache extensions
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ steps.extcache.outputs.dir }}
|
|
|
|
key: ${{ steps.extcache.outputs.key }}
|
2021-10-02 01:01:24 +02:00
|
|
|
restore-keys: ${{ runner.os }}-${{ env.extensions-cache-key }}
|
2021-10-02 00:38:21 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
- name: Setup PHP
|
2020-05-31 15:53:57 +02:00
|
|
|
uses: shivammathur/setup-php@v2
|
2020-05-31 14:36:09 +02:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
2021-10-02 00:38:21 +02:00
|
|
|
extensions: ${{ env.extensions }}
|
2021-10-02 01:07:57 +02:00
|
|
|
|
|
|
|
# Setup GitHub CI PHP problem matchers
|
|
|
|
# https://github.com/shivammathur/setup-php#problem-matchers
|
|
|
|
- name: Setup problem matchers for PHP
|
|
|
|
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
|
|
|
|
|
|
|
- name: Setup problem matchers for PHPUnit
|
|
|
|
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
2021-10-02 00:27:57 +02:00
|
|
|
|
|
|
|
# composer cache
|
2020-05-31 15:10:30 +02:00
|
|
|
- name: Remove composer lock
|
|
|
|
run: rm composer.lock
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2021-10-02 00:27:57 +02:00
|
|
|
- name: Get composer cache directory
|
|
|
|
id: composer-cache
|
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2021-10-02 00:27:57 +02:00
|
|
|
# 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
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2021-10-02 00:27:57 +02:00
|
|
|
- name: Cache dependencies
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
2021-10-02 00:32:57 +02:00
|
|
|
key: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/composer.json') }}
|
2021-10-02 00:29:48 +02:00
|
|
|
restore-keys: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-
|
2021-10-02 00:27:57 +02:00
|
|
|
|
2021-10-02 01:12:08 +02:00
|
|
|
# composer installation
|
2020-05-31 14:45:25 +02:00
|
|
|
- name: Setup PHPunit
|
|
|
|
run: composer install -n
|
2021-10-02 01:12:08 +02:00
|
|
|
|
2021-05-28 22:39:50 +02:00
|
|
|
- name: Install Google Cloud Storage
|
|
|
|
run: composer require google/cloud-storage
|
2021-10-02 00:27:57 +02:00
|
|
|
|
|
|
|
# testing
|
2020-05-31 14:42:11 +02:00
|
|
|
- name: Run unit tests
|
2020-05-31 15:24:10 +02:00
|
|
|
run: ../vendor/bin/phpunit --no-coverage
|
2020-05-31 14:42:11 +02:00
|
|
|
working-directory: tst
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
Mocha:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
- name: Setup Node
|
2021-10-02 00:55:08 +02:00
|
|
|
uses: actions/setup-node@v2
|
2020-05-31 14:36:09 +02:00
|
|
|
with:
|
|
|
|
node-version: '12'
|
2021-10-02 00:55:08 +02:00
|
|
|
cache: 'npm'
|
2021-10-02 00:56:44 +02:00
|
|
|
cache-dependency-path: 'js/package.json'
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
- name: Setup Mocha
|
|
|
|
run: npm install -g mocha
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
- name: Setup Node modules
|
2020-05-31 14:42:11 +02:00
|
|
|
run: npm install
|
|
|
|
working-directory: js
|
2021-10-02 00:41:54 +02:00
|
|
|
|
2020-05-31 14:36:09 +02:00
|
|
|
- name: Run unit tests
|
|
|
|
run: mocha
|
2020-05-31 14:42:11 +02:00
|
|
|
working-directory: js
|
|
|
|
|