We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffe43bb commit eeadc31Copy full SHA for eeadc31
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ types:
7
+ - opened
8
+ - synchronize
9
10
+jobs:
11
+ build-test:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Cache Composer dependencies
17
+ uses: actions/cache@v3
18
+ with:
19
+ path: /tmp/composer-cache
20
+ key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
21
+ - uses: php-actions/composer@v6
22
+ - name: PHPUnit tests
23
+ run: ./vendor/bin/phpunit
24
0 commit comments