2022-11-30 14:55:35 +00:00
|
|
|
name: Tests and analysis
|
2022-12-03 17:49:16 +00:00
|
|
|
on: push
|
2022-11-30 14:55:35 +00:00
|
|
|
jobs:
|
|
|
|
test-and-analyze:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: php-actions/composer@v6
|
|
|
|
with:
|
2022-11-30 15:04:02 +00:00
|
|
|
dev: yes
|
2022-11-30 14:55:35 +00:00
|
|
|
- uses: php-actions/phpstan@v3
|
|
|
|
with:
|
2023-09-08 01:19:39 +00:00
|
|
|
path: src
|
|
|
|
level: max
|
2022-11-30 14:55:35 +00:00
|
|
|
memory_limit: 1G
|
2022-11-30 15:04:02 +00:00
|
|
|
args: --memory-limit 1G
|
2023-09-08 01:19:39 +00:00
|
|
|
- uses: php-actions/phpunit@v3
|