-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (28 loc) · 887 Bytes
/
ci.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
name: tests
on: [push]
jobs:
test:
name: PHPUnit
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: setup enviroment
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install dependencies
run: composer install
- name: Generate key
run: php artisan key:generate
- name: Clear Config
run: php artisan config:clear
- name: Laravel PHPUnit
run: php artisan test --coverage-clover ./coverage.xml
- name: Upload coverage reports to Codacy
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./coverage.xml