We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8976a47 commit 8c0710bCopy full SHA for 8c0710b
2 files changed
.github/workflows/test.yml
@@ -0,0 +1,28 @@
1
+name: Codeception tests
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ name: ${{matrix.operating-system}}, PHP ${{ matrix.php }}
8
9
+ runs-on: ${{ matrix.operating-system }}
10
11
+ strategy:
12
+ matrix:
13
+ operating-system: [ ubuntu-latest, ubuntu-20.04 ]
14
+ php: [ '8.0', '8.1', '8.4' ]
15
16
+ steps:
17
+ - uses: actions/checkout@master
18
19
+ - name: Setup PHP Action
20
+ uses: shivammathur/setup-php@master
21
+ with:
22
+ php-version: ${{ matrix.php }}
23
24
+ - name: Install dependencies
25
+ run: composer install
26
27
+ - name: Run tests
28
+ run: composer run test
composer.json
@@ -24,5 +24,8 @@
"psr-4": {
"Kodus\\SQLSplit\\": "src/"
}
+ },
+ "scripts": {
29
+ "test": "codecept run"
30
31
0 commit comments