From b6e1fd6f56b653cf20b54745518862268b2463d4 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Wed, 24 Apr 2024 16:52:16 +0200 Subject: [PATCH] GH Actions: minor simplification Remove the `experimental` key in favour of a condition. --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abfa32c..671387d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,34 +71,28 @@ jobs: - php: '5.4' phpcompat: 'stable' sodium: '1' - experimental: false - php: 'latest' phpcompat: 'stable' sodium: '1' - experimental: false # Sodium Compat 2.x (master) is compatible with PHP 8.1 - current. - php: '8.1' phpcompat: 'stable' sodium: 'dev' - experimental: false - php: 'latest' phpcompat: 'stable' sodium: 'dev' - experimental: false # Experimental builds against PHPCompatibility 10. - php: '7.4' phpcompat: 'dev-develop as 9.99.99' sodium: '1' - experimental: true - php: '8.1' phpcompat: 'dev-develop as 9.99.99' sodium: 'dev' - experimental: true name: "Test: PHP ${{ matrix.php }} - PHPCompat ${{ matrix.phpcompat != 'stable' && ' dev' || 'stable' }} - Sodium ${{ matrix.sodium }}" - continue-on-error: ${{ matrix.experimental }} + continue-on-error: ${{ matrix.phpcompat != 'stable' }} steps: - name: Checkout code