-
Notifications
You must be signed in to change notification settings - Fork 15
41 lines (36 loc) · 1.04 KB
/
java-contracts-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Test Java contracts
on:
pull_request:
branches:
- '**'
paths:
- 'contracts/javascore/**'
push:
branches:
- main
paths:
- 'contracts/javascore/**'
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Run unit tests
run: cd contracts/javascore && ./gradlew clean build && ./gradlew optimizedJar
integration-test:
needs: unit-test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Start local Blockchain
run: docker logout public.ecr.aws && cd contracts/javascore/gochain-btp && make run
- name: Check if all contracts are deployable
run: cd contracts/javascore && ./gradlew clean build && ./gradlew optimizedJar && ./gradlew deployToLocal -PdeploymentENV=local
- name: Run integration tests
run: cd contracts/javascore && ./gradlew integrationTest