-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (34 loc) · 1.36 KB
/
coverage.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
name: Tests with coverage
on:
push:
branches:
- main
jobs:
code-coverage:
name: Run PHPUnit with coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Start the aurora
run: docker compose up -d --build
- name: Install dependencies
run: docker compose exec --user root php composer install
- name: Generate public/private keys for use in your application.
run: docker compose exec --user root php bin/console lexik:jwt:generate-keypair
- name: Give permissions for var
run: sudo chmod -R 777 var/
- name: Give permissions for assets/uploads
run: chmod -R 777 assets/uploads
- name: Create the phpunit.xml
run: docker compose exec --user root php cp phpunit.xml.dist phpunit.xml
- name: Run migrations
run: docker compose exec php bin/console d:m:migrate -n
- name: Run fixtures
run: docker compose exec php bin/console d:f:l -n --purge-exclusions=city --purge-exclusions=state
- name: Start the PHPUnit
run: docker compose exec --user root -T php bash -c "php -d memory_limit=512M bin/phpunit --coverage-clover=coverage.xml"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
files: coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}