Skip to content

Commit

Permalink
Fix matrix.group
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Jul 13, 2022
1 parent c388b51 commit 7efe798
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
php: [ 7.4 ]
db: [ pgsql ]
group: [ 'admin01', 'admin02', 'admin03', 'front', 'restrict-file-upload', 'installer' ]
group: [ 'admin01', 'admin02', 'admin03', 'front', 'restrict-fileupload', 'installer' ]
include:
- db: pgsql
database_url: postgres://postgres:[email protected]:5432/eccube_db
Expand All @@ -34,7 +34,7 @@ jobs:
app_env: 'codeception'
- group: 'front'
app_env: 'codeception'
- group: 'restrict-file-upload'
- group: 'restrict-fileupload'
app_env: 'codeception'
- group: 'installer'
app_env: 'install'
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
run: php -S 127.0.0.1:8000 codeception/router.php &

- name: Codeception
if: ${{ matrix.group != 'restrict-file-upload' }}
if: ${{ matrix.group != 'restrict-fileupload' }}
env:
APP_ENV: ${{ matrix.app_env }}
DATABASE_URL: ${{ matrix.database_url }}
Expand All @@ -128,7 +128,7 @@ jobs:
run: vendor/bin/codecept -vvv run acceptance --env chrome,github_action -g ${GROUP} --skip-group restrict-file-upload --html report.html

- name: Codeception with Restrict file upload
if: ${{ matrix.group == 'restrict-file-upload' }}
if: ${{ matrix.group == 'restrict-fileupload' }}
env:
APP_ENV: ${{ matrix.app_env }}
DATABASE_URL: ${{ matrix.database_url }}
Expand Down

0 comments on commit 7efe798

Please sign in to comment.