Hi,
I would like to query the name of a job that was created using the matrix attribute by a PR from github.
Example .travis File:
matrix:
include:
- name: 'super test1'
env: TEST_NAME='TEST1'
- name: 'super test2'
env: TEST_NAME='TEST2'
script: java -jar "${JAR_PATH}" -test "${TEST_NAME}"
I can’t get the value of name attribute (which is shown on travis webpage). Neither with the ‘build’ (https://developer.travis-ci.com/resource/build#Build) nor with the ‘job’ (https://developer.travis-ci.com/resource/job#Job) request.
Can anyone help me ?
Greetings, Michael