-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (42 loc) · 1.23 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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