paste.chapril.org-privatebin/.github/workflows/tests.yml

121 lines
3.2 KiB
YAML
Raw Normal View History

name: Tests
2022-10-26 05:30:37 +02:00
on:
push:
workflow_dispatch:
jobs:
Composer:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- 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
2022-10-25 06:53:26 +02:00
PHPunit:
2020-05-31 15:53:57 +02:00
runs-on: ubuntu-latest
strategy:
matrix:
2022-10-25 06:53:26 +02:00
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2']
name: PHP ${{ matrix.php-versions }} unit tests on ${{ matrix.operating-system }}
env:
extensions: gd, sqlite3
extensions-cache-key-name: phpextensions
2022-10-25 06:53:26 +02:00
steps:
2022-10-25 06:53:26 +02:00
# let's get started!
- name: Checkout
uses: actions/checkout@v4
2022-10-25 06:53:26 +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 }}
key: ${{ runner.os }}-${{ env.extensions-cache-key }}
- name: Cache extensions
uses: actions/cache@v3
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
restore-keys: ${{ runner.os }}-${{ env.extensions-cache-key }}
2022-10-25 06:53:26 +02:00
- name: Setup PHP
2020-05-31 15:53:57 +02:00
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: ${{ env.extensions }}
2022-10-25 06:53:26 +02:00
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
2022-10-25 06:53:26 +02:00
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
2021-10-02 01:07:57 +02:00
- name: Setup problem matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
2022-10-25 06:53:26 +02:00
# composer cache
- name: Remove composer lock
run: rm composer.lock
2022-10-25 06:53:26 +02:00
- name: Get composer cache directory
id: composer-cache
2022-10-26 05:51:36 +02:00
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
# 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
2022-10-26 05:51:36 +02:00
run: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
shell: bash
2022-10-25 06:53:26 +02:00
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-${{ steps.get-date.outputs.date }}-
2022-10-25 06:53:26 +02:00
2021-10-02 01:12:08 +02:00
# composer installation
- 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
2022-10-25 06:53:26 +02:00
# testing
- name: Run unit tests
run: ../vendor/bin/phpunit --no-coverage
working-directory: tst
2022-10-25 06:53:26 +02:00
Mocha:
runs-on: ubuntu-latest
steps:
2022-10-25 06:53:26 +02:00
- name: Checkout
uses: actions/checkout@v4
2022-10-25 06:53:26 +02:00
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
2021-10-02 00:55:08 +02:00
cache: 'npm'
cache-dependency-path: 'js/package-lock.json'
2022-10-25 06:53:26 +02:00
- name: Setup Mocha
run: npm install -g mocha
2022-10-25 06:53:26 +02:00
- name: Setup Node modules
run: npm ci
working-directory: js
2022-10-25 06:53:26 +02:00
- name: Run unit tests
run: npm test
working-directory: js