Skip to content

Commit d8579d0

Browse files
authored
Merge pull request #84 from Chris53897/feature/5.x-improve-ci-add-tests-for-php82
chore: add ci tests for php 8.2, bump github actions versions,
2 parents 3ce3513 + 5bed66a commit d8579d0

File tree

2 files changed

+11
-40
lines changed

2 files changed

+11
-40
lines changed

.github/workflows/code_checks.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,23 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: ['8.0', '8.1']
13-
stability: [ prefer-lowest, prefer-stable ]
12+
include:
13+
- php: '8.0'
14+
stability: 'prefer-lowest'
15+
- php: '8.0'
16+
stability: 'prefer-stable'
17+
- php: '8.1'
18+
stability: 'prefer-stable'
19+
- php: '8.2'
20+
stability: 'prefer-stable'
1421

1522
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} tests
1623
steps:
1724
# basically git clone
18-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
1926

2027
- name: Cache dependencies
21-
uses: actions/cache@v1
28+
uses: actions/cache@v3
2229
with:
2330
path: ~/.composer/cache/files
2431
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

.travis.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)