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.
2 parents 35864f6 + af1319a commit c4175ebCopy full SHA for c4175eb
.github/workflows/test.yml
@@ -0,0 +1,36 @@
1
+name: test
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-20.04
9
10
+ steps:
11
+ - name: Setup PHP
12
+ uses: shivammathur/setup-php@v2
13
+ with:
14
+ php-version: '8.2'
15
16
+ - name: Checkout
17
+ uses: actions/checkout@v3
18
19
+ - name: prepare
20
+ run: >
21
+ composer install
22
+ - name: run postgresql server
23
24
+ docker compose up -d
25
26
+ - name: cs
27
28
+ vendor/bin/ecs
29
30
+ - name: phpstan
31
32
+ vendor/bin/phpstan
33
34
+ - name: test
35
36
+ vendor/bin/phpunit
0 commit comments