Bump symfony/http-foundation from 7.1.3 to 7.1.7 (#14) #16
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: Tests | |
on: | |
push: | |
branches: | |
- "*" | |
paths-ignore: | |
- README.md | |
- .github/workflows/release.yml | |
jobs: | |
tests: | |
runs-on: ubuntu-24.04 | |
name: Test source code | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.3" | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Create .env | |
run: php -r "file_exists('.env') || copy('.env.example', '.env');" | |
- name: Install Composer dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress | |
- name: Test code style | |
run: vendor/bin/pint --test | |
- name: Install NPM dependencies | |
run: npm install | |
- name: Build assets | |
run: npm run build | |
- name: Generate key | |
run: php artisan key:generate | |
- name: Set directory permissions | |
run: chmod -R 777 storage bootstrap/cache | |
- name: Create database | |
run: | | |
mkdir -p database | |
touch database/database.sqlite | |
- name: Execute tests | |
env: | |
DB_CONNECTION: sqlite | |
DB_DATABASE: /home/runner/work/makovec/makovec/database/database.sqlite | |
run: vendor/bin/phpunit |