Skip to content

Commit 5c1657d

Browse files
authored
Merge pull request #51 from Codeception/github-actions-updates
Run tests on PHP 8.2, upgrade actions
2 parents f556168 + 4cc91aa commit 5c1657d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [8.0, 8.1]
11+
php: [8.0, 8.1, 8.2]
1212
laravel: [8]
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Checkout Laravel 8 Sample
2727
if: matrix.laravel == 8
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929
with:
3030
repository: codeception/laravel-module-tests
3131
path: framework-tests
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

3838
- name: Cache composer dependencies
39-
uses: actions/cache@v2.1.3
39+
uses: actions/cache@v3
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
@@ -64,4 +64,4 @@ jobs:
6464
working-directory: framework-tests
6565

6666
- name: Run test suite
67-
run: php vendor/bin/codecept run Functional -c framework-tests
67+
run: php vendor/bin/codecept run Functional -c framework-tests

0 commit comments

Comments
 (0)