You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dev/ci/github_actions/adding_tests.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ This document explains how to create new workflows and add tests.
8
8
9
9
## Table of Contents
10
10
11
-
*[Adding Tests to an Existing Workflow](#adding-tests-to-existing-workflow)
12
-
*[Adding Tests to an Existing Test Suite](#adding-tests-to-existing-test-suite)
11
+
*[Adding Tests to an Existing Workflow](#adding-tests-to-an-existing-workflow)
12
+
*[Adding Tests to an Existing Test Suite](#adding-tests-to-an-existing-test-suite)
13
13
*[Creating a Step in a Job](#creating-a-step-in-a-job)
14
14
*[Creating a New Job](#creating-a-new-job)
15
15
*[Creating a Workflow](#creating-a-workflow)
@@ -118,7 +118,7 @@ A job:
118
118
* requires a series of commands to execute, provided by the `steps` key
119
119
* Refer to the [creating steps in a job section](#creating-a-step-in-a-job) to learn more about `steps`
120
120
* might use build artifacts from the `Build` job
121
-
* The artifacts can be downloaded using `actions/download-artifact`, read more about the workflow structure in the [Overview of the OpenVINO GitHub Actions CI](./overview.md#structure-of-the-workflows)
121
+
* The artifacts can be downloaded using `actions/download-artifact`, read more about the workflow structure in the [Overview of the OpenVINO GitHub Actions CI](./overview.md#workflow-structure)
122
122
123
123
If the job can be used in several workflows, it can be transformed into a reusable workflow.
124
124
Learn more from the [Reusable Workflows page](./reusable_workflows.md).
@@ -128,7 +128,7 @@ Learn more from the [Reusable Workflows page](./reusable_workflows.md).
128
128
To create a new workflow, add a new `<name>.yml` file to the [`.github/workflows`](./../../../../.github) folder.
129
129
Refer to the [official GitHub Actions documentation](https://docs.github.com/en/actions/using-workflows/about-workflows#create-an-example-workflow) for a complete syntax reference, and browse the existing workflows in [`.github/workflows`](./../../../../.github).
130
130
131
-
You can refer to the [structural overview of the existing workflows](./overview.md#structure-of-the-workflows) as a template for a new workflow.
131
+
You can refer to the [structural overview of the existing workflows](./overview.md#workflow-structure) as a template for a new workflow.
132
132
133
133
The [`fedora_29.yml`](./../../../../.github/workflows/fedora_29.yml) workflow example includes:
0 commit comments