'How to read jmeter results in gitlab

I am very new to JMeter. I just wrote a test in JMeter and added the script in .yml file to run it in gitlab. The test runs fine and generates the .jtl result file. But I can't figure out how to fetch it and read the results in gitlab.

My .yml file looks like this

Load tests:
  variables:
    GIT_STRATEGY: none
  stage: load tests
  script:
    - cd "C:\Users\Administrator\Downloads\apache-jmeter-5.4\apache-jmeter-5.4\bin"
    - .\jmeter -n -t JmeterTest.jmx -l testresults.jtl
  only:
    variables:
      - $TESTTYPE == "loadtest"


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source