Update version helper to report v1.11.2, update changelog. #61
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: PHP 8.0 | |
on: [push] | |
jobs: | |
php80: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "8.0" | |
extensions: bcmath, json, pdo | |
- uses: "ramsey/composer-install@v3" | |
- name: Directory Permissions | |
run: | | |
chmod -R 777 storage | |
sudo chmod -R 777 vendor/orchestra/testbench-core/laravel | |
- name: Create Database | |
run: | | |
touch tests/testbase.sqlite | |
touch tests/.skipschemachecks | |
- name: Run tests | |
run: vendor/bin/phpunit |