File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : ' composer'
4+ directory : ' /'
5+ schedule :
6+ interval : ' daily'
7+ - package-ecosystem : ' github-actions'
8+ directory : ' /'
9+ schedule :
10+ interval : ' daily'
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request : ~
8+
9+ jobs :
10+ test :
11+ name : Test
12+ strategy :
13+ matrix :
14+ php-version : ['8.3', '8.4']
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Checkout code
18+ uses : actions/checkout@v5
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
You can’t perform that action at this time.
0 commit comments