Skip to content

build(deps): Bump gopkg.in/yaml.v3 from 3.0.0-20200615113413-eeeca48fe776 to 3.0.0 in /samples/fabric/simplestatewithacl #681

build(deps): Bump gopkg.in/yaml.v3 from 3.0.0-20200615113413-eeeca48fe776 to 3.0.0 in /samples/fabric/simplestatewithacl

build(deps): Bump gopkg.in/yaml.v3 from 3.0.0-20200615113413-eeeca48fe776 to 3.0.0 in /samples/fabric/simplestatewithacl #681

# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: CC-BY-4.0
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Unit Test Corda Interop App
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_local:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Build Protos (Local)
run: make build
working-directory: common/protos-java-kt
- name: Build Corda Interop App (Local)
run: make build-local
working-directory: core/network/corda-interop-app
- name: Run Tests (Local)
run: make test
working-directory: core/network/corda-interop-app