Adds all the things 🎉 #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: [ pull_request ] | |
jobs: | |
phpunit: | |
name: PHPUnit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # important! | |
- name: setup php | |
run: | | |
sudo apt update | |
sudo apt install -y software-properties-common | |
sudo add-apt-repository ppa:ondrej/php -y | |
sudo apt install -y php8.2-{common,cli,gd,curl,mysql,mbstring,bcmath,intl,zip,imap,ssh2,dom,xml,simplexml} | |
curl -s https://getcomposer.org/installer | php | |
sudo mv composer.phar /usr/local/bin/composer | |
git submodule init | |
git submodule update --remote --merge | |
- name: Install dependencies | |
run: | | |
sudo systemctl start mysql.service | |
mysql -uroot -h127.0.0.1 -proot -e 'CREATE DATABASE IF NOT EXISTS testing;' | |
sudo apt update && sudo apt install -y php-mysql | |
composer install --prefer-dist --no-progress --no-suggest | |
- name: Run tests | |
run: | | |
cp .env.ci .env | |
touch database/database.sqlite | |
php artisan key:generate | |
php vendor/bin/phpunit |