-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a Github workflow fo testimony validation
- Loading branch information
Showing
4 changed files
with
87 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Testimony Validation | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "integration-tests/**" | ||
|
||
jobs: | ||
testimony: | ||
name: testimony validate | ||
runs-on: ubuntu-latest | ||
container: | ||
image: fedora:latest | ||
|
||
steps: | ||
- name: Setup for Testimony | ||
run: | | ||
dnf --setopt install_weak_deps=False install -y \ | ||
python3-pip | ||
python3 -m pip install testimony | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Run Testimony | ||
run: | | ||
testimony validate --config \ | ||
integration-tests/testimony.yml integration-tests/test* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
Id: | ||
casesensitive: false | ||
required: true | ||
type: string | ||
Reference: | ||
casesensitive: false | ||
required: false | ||
type: string | ||
CaseComponent: | ||
casesensitive: false | ||
required: true | ||
type: string | ||
Requirement: | ||
casesensitive: false | ||
required: true | ||
type: choice | ||
choices: | ||
- RHSS-291297 | ||
SubSystemTeam: | ||
casesensitive: false | ||
required: true | ||
type: choice | ||
choices: | ||
- sst_csi_client_tools | ||
CaseAutomation: | ||
casesensitive: false | ||
required: true | ||
type: string | ||
Upstream: | ||
casesensitive: false | ||
type: string | ||
Title: | ||
casesensitive: false | ||
type: string | ||
Description: | ||
casesensitive: false | ||
required: true | ||
type: string | ||
Tags: | ||
casesensitive: true | ||
required: true | ||
type: choice | ||
choices: | ||
- Tier 1 | ||
- Tier 2 | ||
- Tier 3 | ||
Steps: {} | ||
ExpectedResults: {} |