This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
feat: SDJWT V5 (#33) #1965
Workflow file for this run
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
# | |
# Copyright SecureKey Technologies Inc. All Rights Reserved. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: test-suite | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
paths: | |
- 'pkg/doc/verifiable/**' | |
- 'component/models/verifiable/**' | |
- 'scripts/*_test_suite.sh' | |
- '.github/workflows/test-suite.yml' | |
- 'Makefile' | |
pull_request: | |
paths: | |
- 'pkg/doc/verifiable/**' | |
- 'component/models/verifiable/**' | |
- 'scripts/*_test_suite.sh' | |
- '.github/workflows/test-suite.yml' | |
- 'Makefile' | |
jobs: | |
vcTestSuite: | |
name: VC test suite | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Setup Go 1.20 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
id: go | |
- name: Setup node | |
uses: actions/setup-node@v3.4.1 | |
with: | |
node-version: '16.x' | |
- name: Setup mocha | |
timeout-minutes: 10 | |
run: npm install -g mocha | |
- uses: actions/checkout@v3 | |
- name: Run test suite | |
timeout-minutes: 10 | |
run: make vc-test-suite | |
- uses: actions/upload-artifact@v2.2.4 | |
with: | |
name: vc-report | |
path: build/vc-test-suite/suite/implementations/aries-framework-go-report.json |