2019-09-12 16:19:05 -04:00
|
|
|
name: phpunit
|
|
|
|
|
2020-01-18 10:27:57 -05:00
|
|
|
on:
|
|
|
|
push:
|
2021-08-04 16:22:14 -04:00
|
|
|
branches-ignore:
|
|
|
|
- l10n_master
|
2020-01-18 10:27:57 -05:00
|
|
|
pull_request:
|
2021-08-04 16:22:14 -04:00
|
|
|
branches-ignore:
|
|
|
|
- l10n_master
|
2019-09-12 16:19:05 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-03-07 11:31:51 -05:00
|
|
|
runs-on: ubuntu-20.04
|
2019-09-12 16:19:05 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-04 18:29:36 -04:00
|
|
|
php: ['7.3', '7.4', '8.0', '8.1']
|
2019-09-12 16:19:05 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2020-01-18 10:17:21 -05:00
|
|
|
|
2021-03-07 11:31:51 -05:00
|
|
|
- name: Setup PHP
|
2021-11-04 18:29:36 -04:00
|
|
|
uses: shivammathur/setup-php@v2
|
2021-03-07 11:31:51 -05:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php }}
|
|
|
|
extensions: gd, mbstring, json, curl, xml, mysql, ldap
|
|
|
|
|
2020-01-18 10:30:54 -05:00
|
|
|
- name: Get Composer Cache Directory
|
2020-01-18 10:27:57 -05:00
|
|
|
id: composer-cache
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
2020-01-18 10:30:54 -05:00
|
|
|
|
|
|
|
- name: Cache composer packages
|
2020-01-18 10:17:21 -05:00
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
2020-01-18 10:27:57 -05:00
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-composer-${{ matrix.php }}
|
2020-01-18 10:17:21 -05:00
|
|
|
|
2020-03-14 14:44:02 -04:00
|
|
|
- name: Start Database
|
|
|
|
run: |
|
2021-12-15 08:56:21 -05:00
|
|
|
sudo systemctl start mysql
|
2020-03-14 14:44:02 -04:00
|
|
|
|
2019-09-12 16:19:05 -04:00
|
|
|
- name: Setup Database
|
|
|
|
run: |
|
|
|
|
mysql -uroot -proot -e 'CREATE DATABASE IF NOT EXISTS `bookstack-test`;'
|
2021-03-07 11:31:51 -05:00
|
|
|
mysql -uroot -proot -e "CREATE USER 'bookstack-test'@'localhost' IDENTIFIED WITH mysql_native_password BY 'bookstack-test';"
|
2019-09-12 16:19:05 -04:00
|
|
|
mysql -uroot -proot -e "GRANT ALL ON \`bookstack-test\`.* TO 'bookstack-test'@'localhost';"
|
|
|
|
mysql -uroot -proot -e 'FLUSH PRIVILEGES;'
|
2020-01-18 10:17:21 -05:00
|
|
|
|
2021-11-05 12:27:59 -04:00
|
|
|
- name: Install composer dependencies
|
2019-09-15 12:50:08 -04:00
|
|
|
run: composer install --prefer-dist --no-interaction --ansi
|
2020-01-18 10:17:21 -05:00
|
|
|
|
2019-09-12 16:19:05 -04:00
|
|
|
- name: Migrate and seed the database
|
|
|
|
run: |
|
|
|
|
php${{ matrix.php }} artisan migrate --force -n --database=mysql_testing
|
|
|
|
php${{ matrix.php }} artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing
|
2020-01-18 10:17:21 -05:00
|
|
|
|
2019-09-12 16:19:05 -04:00
|
|
|
- name: phpunit
|
|
|
|
run: php${{ matrix.php }} ./vendor/bin/phpunit
|