2022-11-30 14:55:35 +00:00
|
|
|
name: Tests and analysis
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore: [main]
|
|
|
|
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:
|
|
|
|
memory_limit: 1G
|
2022-11-30 15:04:02 +00:00
|
|
|
args: --memory-limit 1G
|
|
|
|
- uses: php-actions/phpunit@v3
|