-
Notifications
You must be signed in to change notification settings - Fork 7
40 lines (33 loc) · 1.02 KB
/
license-check.yml
File metadata and controls
40 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: License Check
on:
push:
branches:
- main
- develop
paths:
- 'composer.lock'
- 'composer.json'
pull_request:
paths:
- 'composer.lock'
- 'composer.json'
jobs:
license-check:
runs-on: ubuntu-latest
strategy:
matrix:
operating-system: [ 'ubuntu-latest' ]
php-versions: [ '8.4' ]
dependency-stability: [ 'prefer-none' ]
name: P${{ matrix.php-versions }} - ${{ matrix.operating-system}}
steps:
- uses: actions/checkout@v6
- name: Install PHP versions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: "composer:v2"
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run license check
run: composer run license-check