We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When validating this .travis.yml against Travis WebLint I get the following lint error message:
in matrix.include.env section: does not support multiple values, dropping LINT=true
Running it on Travis CI doesn't drop the LINT environment variable.
Linting should be in sync with the acual build behaviour.
Also the misleading lint error message might have people refactoring their Travis CI configuration in a readability decreasing way.
# fails validation, good readability matrix: include: - php: 7.0 env: - DISABLE_XDEBUG=true - LINT=true
vs
# passes validation, decreased readability matrix: include: - php: 7.0 env: DISABLE_XDEBUG=true LINT=true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When validating this .travis.yml against Travis WebLint I get the following lint error message:
Running it on Travis CI doesn't drop the LINT environment variable.
Linting should be in sync with the acual build behaviour.
Also the misleading lint error message might have people refactoring their Travis CI configuration in a readability decreasing way.
vs
The text was updated successfully, but these errors were encountered: