We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3147f9 commit 430af0bCopy full SHA for 430af0b
.github/workflows/ci.yml
@@ -1,6 +1,6 @@
1
on: [ push, pull_request ]
2
jobs:
3
- test:
+ test-74:
4
runs-on: ubuntu-22.04
5
steps:
6
- uses: actions/checkout@v3
@@ -20,3 +20,16 @@ jobs:
20
- name: psalm static analysis
21
run: php vendor/bin/psalm
22
23
+ test-82:
24
+ runs-on: ubuntu-22.04
25
+ steps:
26
+ - uses: actions/checkout@v3
27
+ - uses: shivammathur/setup-php@v2
28
+ with:
29
+ php-version: 8.2
30
+ tools: composer:v2
31
+ coverage: none
32
+ - run: composer install -o
33
+
34
+ - name: unit tests
35
+ run: php vendor/bin/phpunit
composer.json
@@ -3,7 +3,7 @@
"license": "MIT",
"description": "Functional-ish generic Result type: either Success or Error",
"require": {
- "php": "7.4.* || 8.0.* || 8.1.*"
+ "php": "7.4.* || 8.0.* || 8.1.* || 8.2.*"
7
},
8
"require-dev": {
9
"phpunit/phpunit": "^9.5",
0 commit comments