Compare commits

...

4 commits

Author SHA1 Message Date
Simon Vieille a2e1ac418c
add jenkins status
All checks were successful
Gitnet/csv-validator/pipeline/head This commit looks good
2020-09-01 16:28:22 +02:00
Simon Vieille 2d06d4adc5
add jenkins tests
All checks were successful
Gitnet/csv-validator/pipeline/head This commit looks good
2020-09-01 16:25:29 +02:00
Simon Vieille fac4371d69
fix issue with validation 2020-09-01 16:24:29 +02:00
Simon Vieille 0b9c77ae7f
add compatibility with deblan/csv@v3 2020-09-01 16:24:15 +02:00
4 changed files with 28 additions and 2 deletions

25
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,25 @@
pipeline {
agent any
stages {
stage('PHP 7.1') {
steps {
sh '/usr/local/bin/composer-php7.1 install'
sh 'php7.1 /usr/local/bin/phpunit-7'
}
}
stage('PHP 7.3') {
steps {
sh '/usr/local/bin/composer-php7.3 update'
sh 'php7.3 /usr/local/bin/phpunit-9'
}
}
stage('PHP 7.4') {
steps {
sh '/usr/local/bin/composer-php7.4 update'
sh 'php7.4 /usr/local/bin/phpunit-9'
}
}
}
}

View file

@ -1,7 +1,7 @@
csv-validator
=============
[![](https://phpci.gitnet.fr/build-status/image/1?branch=master&label=PHPCensor&style=flat-square)](https://phpci.gitnet.fr/build-status/view/1)
[![Build Status](https://ci.gitnet.fr/buildStatus/icon?job=Gitnet%2Fcsv-validator%2F3)](https://ci.gitnet.fr/job/Gitnet/job/csv-validator/job/3/)
CSV validator library

View file

@ -17,6 +17,6 @@
"require": {
"php": "^7.1.3",
"symfony/validator": "^4",
"deblan/csv": "v2.0.*"
"deblan/csv": "v2.0.*|v3.*"
}
}

View file

@ -122,6 +122,7 @@ class Validator
if ($this->parser !== $parser) {
$this->parser = $parser;
$this->errors = [];
$this->hasValidate = false;
} elseif ($this->hasValidate) {
return;
}