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 a90634a commit ffd83f9Copy full SHA for ffd83f9
.github/workflows/quality-checks.yml
@@ -0,0 +1,31 @@
1
+name: Quality Checks
2
+
3
+on:
4
+ workflow_dispatch: {}
5
6
+ pull_request: {}
7
+ push:
8
+ branches:
9
+ - master
10
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
+ tests:
17
+ name: Tests
18
+ runs-on: ubuntu-latest
19
+ timeout-minutes: 10
20
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - uses: shivammathur/setup-php@v2
24
+ with:
25
+ php-version: 8.3
26
+ coverage: none
27
28
+ - uses: ramsey/composer-install@v2
29
30
+ - name: Run PHPUnit
31
+ run: composer run tests
composer.json
@@ -32,6 +32,9 @@
32
"ADR\\": "src/"
33
}
34
},
35
+ "scripts": {
36
+ "tests": "vendor/bin/phpunit"
37
+ },
38
"bin": [
39
"bin/phpadr"
40
]
0 commit comments