Skip to content

Travis: test against nightly (= PHP 8) #5

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

Merged
Merged
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
Travis: test against nightly (= PHP 8)
Adding a build against `nightly` (PHP 8) which, for now, is allowed to fail.

At this time, there is one unit test which fails `ParallelLint.lint.phpt method=testDeprecated`. This will need to be investigated over time. No urgency yet as it may be related to the Nette testing framework dependency and also PHP 8 is still in flux.
  • Loading branch information
jrfnl committed Mar 15, 2020
commit ecf4f54142028b61172b404b8903f78928d224b3
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ matrix:
- php: 7.2
- php: 7.3
- php: 7.4
- php: "nightly"

fast_finish: true

allow_failures:
# Allow failures for unstable builds.
- php: "nightly"

sudo: false

Expand Down