Skip to content

Commit 79eeee8

Browse files
authored
Merge pull request #48 from PHPCompatibility/feature/ghactions-minor-simplification
GH Actions: minor simplification
2 parents a53621b + b6e1fd6 commit 79eeee8

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,34 +71,28 @@ jobs:
7171
- php: '5.4'
7272
phpcompat: 'stable'
7373
sodium: '1'
74-
experimental: false
7574
- php: 'latest'
7675
phpcompat: 'stable'
7776
sodium: '1'
78-
experimental: false
7977

8078
# Sodium Compat 2.x (master) is compatible with PHP 8.1 - current.
8179
- php: '8.1'
8280
phpcompat: 'stable'
8381
sodium: 'dev'
84-
experimental: false
8582
- php: 'latest'
8683
phpcompat: 'stable'
8784
sodium: 'dev'
88-
experimental: false
8985

9086
# Experimental builds against PHPCompatibility 10.
9187
- php: '7.4'
9288
phpcompat: 'dev-develop as 9.99.99'
9389
sodium: '1'
94-
experimental: true
9590
- php: '8.1'
9691
phpcompat: 'dev-develop as 9.99.99'
9792
sodium: 'dev'
98-
experimental: true
9993

10094
name: "Test: PHP ${{ matrix.php }} - PHPCompat ${{ matrix.phpcompat != 'stable' && ' dev' || 'stable' }} - Sodium ${{ matrix.sodium }}"
101-
continue-on-error: ${{ matrix.experimental }}
95+
continue-on-error: ${{ matrix.phpcompat != 'stable' }}
10296

10397
steps:
10498
- name: Checkout code

0 commit comments

Comments
 (0)