Skip to content

Commit 4ae88f8

Browse files
committed
Created github workflows for each tested library
1 parent acee9dd commit 4ae88f8

7 files changed

+189
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: blancks/fast-jsonpatch-php
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-versions: ["8.2"]
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Install PHP
19+
uses: shivammathur/setup-php@v2
20+
with:
21+
php-version: "${{ matrix.php-versions }}"
22+
23+
- name: Install Composer
24+
run: composer install --no-progress --prefer-dist --optimize-autoloader
25+
26+
- name: Run Tests
27+
run: composer run-script blancks/fast-jsonpatch-php
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: gamringer/php-json-patch
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-versions: ["8.2"]
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Install PHP
19+
uses: shivammathur/setup-php@v2
20+
with:
21+
php-version: "${{ matrix.php-versions }}"
22+
23+
- name: Install Composer
24+
run: composer install --no-progress --prefer-dist --optimize-autoloader
25+
26+
- name: Run Tests
27+
run: composer run-script gamringer/php-json-patch
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: mikemccabe/json-patch-php
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-versions: ["8.2"]
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Install PHP
19+
uses: shivammathur/setup-php@v2
20+
with:
21+
php-version: "${{ matrix.php-versions }}"
22+
23+
- name: Install Composer
24+
run: composer install --no-progress --prefer-dist --optimize-autoloader
25+
26+
- name: Run Tests
27+
run: composer run-script mikemccabe/json-patch-php
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: php-jsonpatch/php-jsonpatch
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-versions: ["8.2"]
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Install PHP
19+
uses: shivammathur/setup-php@v2
20+
with:
21+
php-version: "${{ matrix.php-versions }}"
22+
23+
- name: Install Composer
24+
run: composer install --no-progress --prefer-dist --optimize-autoloader
25+
26+
- name: Run Tests
27+
run: composer run-script php-jsonpatch/php-jsonpatch
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: remorhaz/php-json-patch
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-versions: ["8.2"]
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Install PHP
19+
uses: shivammathur/setup-php@v2
20+
with:
21+
php-version: "${{ matrix.php-versions }}"
22+
23+
- name: Install Composer
24+
run: composer install --no-progress --prefer-dist --optimize-autoloader
25+
26+
- name: Run Tests
27+
run: composer run-script remorhaz/php-json-patch
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: swaggest/json-diff
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-versions: ["8.2"]
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Install PHP
19+
uses: shivammathur/setup-php@v2
20+
with:
21+
php-version: "${{ matrix.php-versions }}"
22+
23+
- name: Install Composer
24+
run: composer install --no-progress --prefer-dist --optimize-autoloader
25+
26+
- name: Run Tests
27+
run: composer run-script swaggest/json-diff
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: xp-forge/json-patch
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
name: "PHPUnit (PHP ${{ matrix.php-versions }})"
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
php-versions: ["8.2"]
13+
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Install PHP
19+
uses: shivammathur/setup-php@v2
20+
with:
21+
php-version: "${{ matrix.php-versions }}"
22+
23+
- name: Install Composer
24+
run: composer install --no-progress --prefer-dist --optimize-autoloader
25+
26+
- name: Run Tests
27+
run: composer run-script xp-forge/json-patch

0 commit comments

Comments
 (0)