17 lines
402 B
YAML
17 lines
402 B
YAML
|
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:
|
||
|
args: --ignore-platform-reqs
|
||
|
- uses: php-actions/phpunit@v3
|
||
|
- uses: php-actions/phpstan@v3
|
||
|
with:
|
||
|
memory_limit: 1G
|
||
|
args: --memory-limit 1G
|