Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Autobump tbdex spec #272

Closed
wants to merge 9 commits into from
Closed
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
36 changes: 36 additions & 0 deletions .github/actions/spec-test-vector-report/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "Spec Test Vector Report"
description: "Generate and compare spec test vector report"

inputs:
junit-report-paths:
description: "Glob Path with the JUnit test vectors report, can be a single path or a list of paths in an array"
required: true
spec-path:
description: "The path to the spec submodule"
required: true
test-cases-prefix:
description: "The prefix of the test cases to be filtered"
required: false
comment-on-pr:
description: "Whether to comment the summary report on the PR"
required: false
git-token:
description: "The git token to add the comment to the PR (required for PR comments)"
required: false
fail-on-missing-vectors:
description: "Whether to fail the job if missing test vectors are found"
required: false
fail-on-failed-test-cases:
description: "Whether to fail the job if failed test cases are found"
required: false

# Define your outputs here.
outputs:
summary:
description: "The summary of the test vector report, same as the GITHUB_STEP_SUMMARY"
test-vector-report:
description: "The test vector report object"

runs:
using: node20
main: dist/index.js
Loading
Loading