-
Notifications
You must be signed in to change notification settings - Fork 9
28 lines (28 loc) · 922 Bytes
/
main.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
name: Tests
on: [push, pull_request,workflow_dispatch]
jobs:
router-tests:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['8. 3']
phpunit-versions: ['latest']
include:
- operating-system: 'ubuntu-latest'
php-versions: '8.3'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Update Composer
run: sudo composer self-update --no-interaction
- name: Run Composer Install
run: composer install --no-interaction
- name: run tests
run: vendor/bin/pest --coverage-clover ./clover.xml
- name: run static analysis
run: vendor/bin/phpstan analyse src --level 5
- name: Upload to Codecov
uses: codecov/codecov-action@v4