Skip to content

Commit b5d1eec

Browse files
committed
Removed job "phpunit-update"
1 parent cb89aae commit b5d1eec

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

.github/workflows/main.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -28,48 +28,48 @@ env:
2828
TERM_PROGRAM: Hyper
2929

3030
jobs:
31-
phpunit-update:
32-
name: PHPUnit (update)
33-
runs-on: ubuntu-latest
34-
env:
35-
JBZOO_COMPOSER_UPDATE_FLAGS: ${{ matrix.composer_flags }}
36-
strategy:
37-
matrix:
38-
php-version: [ 7.2, 7.3, 7.4, 8.0 ]
39-
composer_flags: [ "--prefer-lowest", "" ]
40-
steps:
41-
- name: Checkout code
42-
uses: actions/checkout@v2
43-
with:
44-
fetch-depth: 0
45-
46-
- name: Setup PHP
47-
uses: shivammathur/setup-php@v2
48-
with:
49-
php-version: ${{ matrix.php-version }}
50-
coverage: xdebug
51-
tools: composer
52-
53-
- name: Build the Project
54-
run: make update --no-print-directory
55-
56-
- name: 🧪 PHPUnit Tests
57-
run: make test --no-print-directory
58-
59-
- name: Upload Artifacts
60-
uses: actions/upload-artifact@v2
61-
continue-on-error: true
62-
with:
63-
name: PHPUnit (update) - ${{ matrix.php-version }} - ${{ matrix.coverage }} - ${{ matrix.build-way }}
64-
path: build/
31+
# phpunit-update:
32+
# name: PHPUnit (update)
33+
# runs-on: ubuntu-latest
34+
# env:
35+
# JBZOO_COMPOSER_UPDATE_FLAGS: ${{ matrix.composer_flags }}
36+
# strategy:
37+
# matrix:
38+
# php-version: [ 7.2, 7.3, 7.4, 8.0 ]
39+
# composer_flags: [ "--prefer-lowest", "" ]
40+
# steps:
41+
# - name: Checkout code
42+
# uses: actions/checkout@v2
43+
# with:
44+
# fetch-depth: 0
45+
#
46+
# - name: Setup PHP
47+
# uses: shivammathur/setup-php@v2
48+
# with:
49+
# php-version: ${{ matrix.php-version }}
50+
# coverage: xdebug
51+
# tools: composer
52+
#
53+
# - name: Build the Project
54+
# run: make update --no-print-directory
55+
#
56+
# - name: 🧪 PHPUnit Tests
57+
# run: make test --no-print-directory
58+
#
59+
# - name: Upload Artifacts
60+
# uses: actions/upload-artifact@v2
61+
# continue-on-error: true
62+
# with:
63+
# name: PHPUnit (update) - ${{ matrix.php-version }} - ${{ matrix.coverage }} - ${{ matrix.build-way }}
64+
# path: build/
6565

6666

6767
phpunit-build:
6868
name: PHPUnit (build)
6969
runs-on: ubuntu-latest
7070
strategy:
7171
matrix:
72-
php-version: [ 7.2, 7.3, 7.4 ]
72+
php-version: [ 7.2, 7.3, 7.4, 8.0 ]
7373
steps:
7474
- name: Checkout code
7575
uses: actions/checkout@v2

0 commit comments

Comments
 (0)