Skip to content
New issue

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

check broken links on local docs #53

Merged
merged 3 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Check broken links in documentation using Markup Link Checker (mlc)
uses: becheran/[email protected]
if: runner.os == 'Linux'
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
[![Known Vulnerabilities](https://snyk.io/test/github/Xray-App/xray-junit-extensions/badge.svg)](https://snyk.io/test/github/Xray-App/xray-junit-extensions)
![code coverage](
https://raw.githubusercontent.com/Xray-App/xray-junit-extensions/main/.github/badges/jacoco.svg)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/686a52b4d223469d894af90071ee93d2)](https://www.codacy.com/gh/Xray-App/xray-junit-extensions/dashboard?utm_source=github.com&utm_medium=referral&utm_content=Xray-App/xray-junit-extensions&utm_campaign=Badge_Grade)
[![license](https://img.shields.io/badge/License-EPL%202.0-green.svg)](https://opensource.org/licenses/EPL-2.0)

Check warning on line 7 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://opensource.org/licenses/EPL-2.0. Request was redirected to https://opensource.org/license/EPL-2.0
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/Xray-App/community)

Check warning on line 8 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://badges.gitter.im/gitterHQ/gitter.png. Request was redirected to https://badges.gitter.im/repo.png

Check warning on line 8 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://gitter.im/Xray-App/community. Request was redirected to https://app.gitter.im/#/room/#Xray-App_community:gitter.im
[![Maven Central Version](https://img.shields.io/maven-central/v/app.getxray/xray-junit-extensions)](https://central.sonatype.com/artifact/app.getxray/xray-junit-extensions/)

Check warning on line 9 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://img.shields.io/maven-central/v/app.getxray/xray-junit-extensions. Request was redirected to https://img.shields.io/maven-metadata/v.svg?label=maven-central&metadataUrl=https%3A%2F%2Frepo1.maven.org%2Fmaven2%2Fapp%2Fgetxray%2Fxray-junit-extensions%2Fmaven-metadata.xml

Check warning on line 9 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://central.sonatype.com/artifact/app.getxray/xray-junit-extensions/. Request was redirected to https://central.sonatype.com/artifact/app.getxray/xray-junit-extensions

This repo contains several improvements for [JUnit](https://junit.org/junit5/) that allow you to take better advantage of JUnit 5 (jupiter engine) whenever using it together with [Xray Test Management](https://getxray.app).

Check warning on line 11 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://getxray.app. Request was redirected to https://www.getxray.app/
This code is provided as-is; you're free to use it and modify it at your will (see license ahead).

This is a preliminary release so it is subject to changes, at any time.
Expand All @@ -17,7 +16,7 @@
## Overview

Results from automated scripts implemented as `@Test` methods can be tracked in test management tools to provide insights about quality aspects targeted by those scripts and their impacts.
Therefore, it's important to attach some relevant information during the execution of the tests, so it can be shared and analyzed later on in the test management tool (e.g. [Xray Test Management](https://getxray.app)).

Check warning on line 19 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://getxray.app. Request was redirected to https://www.getxray.app/

This project is highly based on previous work by the JUnit team. The idea is to be able to produce a custom JUnit XML report containing additional information that Xray can take advantage of.
This way, testers can automate the test script and at the same time provide information such as the covered requirement, right from the test automation code. Additional information may be provided, either through new annotations or by injecting a custom reporter as argument to the test method, using a specific extension.
Expand Down Expand Up @@ -239,9 +238,9 @@

## Contact

You may find me on [Twitter](https://twitter.com/darktelecom).

Check warning on line 241 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://twitter.com/darktelecom. 200 - OK
Any questions related with this code, please raise issues in this GitHub project. Feel free to contribute and submit PR's.
For Xray specific questions, please contact [Xray's support team](https://jira.getxray.app/servicedesk/customer/portal/2).

Check warning on line 243 in README.md

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

link checker warning

https://jira.getxray.app/servicedesk/customer/portal/2. Request was redirected to https://jira.getxray.app/servicedesk/customer/portal/2/user/login?destination=portal%2F2

## References

Expand Down
Loading