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 c960a2b commit 77a6911Copy full SHA for 77a6911
.github/dependabot.yaml
@@ -4,3 +4,7 @@ updates:
4
directory: '/'
5
schedule:
6
interval: 'daily'
7
+ - package-ecosystem: 'github-actions'
8
+ directory: '/'
9
+ schedule:
10
+ interval: 'daily'
.github/workflows/test.yaml
@@ -0,0 +1,30 @@
1
+name: Test
2
+
3
+on:
+ push:
+ branches:
+ - main
+ pull_request: ~
+jobs:
+ test:
11
+ name: Test
12
+ strategy:
13
+ matrix:
14
+ php-version: ['8.4']
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
20
+ - name: Setup PHP
21
+ uses: shivammathur/setup-php@v2
22
+ with:
23
+ php-version: ${{ matrix.php-version }}
24
+ tools: composer
25
26
+ - name: Install composer dependencies
27
+ run: composer install --prefer-dist --no-progress
28
29
+ - name: Run tests
30
+ run: composer test
0 commit comments