From 826b4cb582bf1bf1dc73cd7bf5cff11bd6eab8c0 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Tue, 24 Sep 2024 22:21:02 -0500 Subject: [PATCH] don't run unit tests on PHP 5.6 phpseclib 3.0 still nominally supports PHP 5.6 but i'm tired of seeing unit tests fail because of issues i can't reproduce on my own local PHP 5.6 install. this isn't without precident.phpseclib 1.0 nominally supports PHP 4.4, as well, but it's not unit tested on PHP 4.4. for that one, if someone has an issue with PHP 4.4 they're free to report it on github. PHP 5.6 will henceforth work that way for phpseclib 3.0. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a24ccacf..c482559c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,4 +92,4 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - php-version: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] + php-version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']