trying to exclude a test for a specific version of jenkins.io; this should work:
- run: jenkins-lts --version | grep {{version}}
if: '<2.426.3 || >2.426.3'
but doesn't. indeed, even this doesn't work:
- run: jenkins-lts --version | grep {{version}}
if: '<2.426.3 || >2.426.4'
but this does:
- run: jenkins-lts --version | grep {{version}}
if: '<2.426.3 || >=2.426.4'
so, there's something up with the handling of the > operator.