We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75746fc commit e5cf375Copy full SHA for e5cf375
.github/workflows/main.yml
@@ -1,22 +1,19 @@
1
name: CI
2
-on:
3
- push:
4
- branches: [ master ]
5
- pull_request:
6
+
+on: [push]
7
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
-
12
steps:
13
- - uses: actions/checkout@v2
14
15
- - name: Install composer
16
- uses: php-actions/composer@v1
17
18
- - name: Run PHPUnit
19
- uses: php-actions/phpunit@v1
20
- with:
21
- config: ./phpunit.xml
22
- memory: 256M
+ - uses: actions/checkout@v2
+ - name: Install composer
+ uses: php-actions/composer@v1
+ - name: Run PHPUnit
+ uses: php-actions/phpunit@v9
+ with:
+ configuration: ./phpunit.xml
+ memory_limit: 256M
0 commit comments