-
Notifications
You must be signed in to change notification settings - Fork 12
53 lines (38 loc) · 1.56 KB
/
coverage.yml
File metadata and controls
53 lines (38 loc) · 1.56 KB
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
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: Create .env file
run: cp .env.example .env
- name: Start the aurora
run: docker compose up -d --build
- name: Install dependencies
run: docker compose exec --user root php composer install --ignore-platform-req=ext-mongodb
- 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: Create and give permissions for assets/uploads
run: mkdir -p assets/uploads && 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 }}
- name: Remove o .env file
run: rm .env