Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Promote annotations @before and @beforeClass to attributes #175

Merged
merged 5 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
include:
- { php: 8.1, dependencies: "highest" }
- { php: 8.2, dependencies: "highest" }
- { php: 8.3, dependencies: "highest" }
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -35,8 +36,11 @@ jobs:
strategy:
matrix:
include:
- { phpunit: 10, php: 8.2 }
- { phpunit: 10, php: 8.1 }
- { phpunit: 10, php: 8.2 }
- { phpunit: 10, php: 8.3 }
- { phpunit: 11, php: 8.2 }
- { phpunit: 11, php: 8.3 }
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ In property-based testing, several properties that the System Under Test must re

## Compatibility

- PHP 8.1, 8.2
- PHPUnit 10.x
- PHP 8.1, 8.2, 8.3
- PHPUnit 10.x, 11.x

## Installation

Expand Down
5 changes: 0 additions & 5 deletions phpstan-baseline.neon
Original file line number Diff line number Diff line change
Expand Up @@ -435,11 +435,6 @@ parameters:
count: 1
path: src/Generator/GeneratedValueSingle.php

-
message: "#^PHPDoc tag @param has invalid value \\(callable\\|Constraint\\)\\: Unexpected token \"\\\\n \", expected variable at offset 37$#"
count: 1
path: src/Generator/SuchThatGenerator.php

-
message: "#^Call to an undefined method Eris\\\\Generator\\\\GeneratedValue\\<array\\<int, mixed\\>\\>\\:\\:first\\(\\)\\.$#"
count: 1
Expand Down
Loading
Loading