Skip to content

Commit eecc6c3

Browse files
Initial work on dependency validation job
1 parent 7eee5e5 commit eecc6c3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,26 @@ permissions:
1313
contents: read
1414

1515
jobs:
16+
dependency-validation:
17+
name: Dependency Validation
18+
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v4
24+
25+
- name: Install PHP
26+
uses: shivammathur/setup-php@v2
27+
with:
28+
php-version: 8.3
29+
extensions: none, iconv, json, phar, tokenizer
30+
coverage: none
31+
tools: none
32+
33+
- name: Run Composer
34+
run: ./tools/composer validate --strict composer.json
35+
1636
coding-guidelines:
1737
name: Coding Guidelines
1838

0 commit comments

Comments
 (0)