We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b34e8 commit 0c9f44fCopy full SHA for 0c9f44f
.github/workflows/build.yml
@@ -0,0 +1,23 @@
1
+# Copyright the Hyperledger Fabric contributors. All rights reserved.
2
+#
3
+# SPDX-License-Identifier: Apache-2.0
4
+
5
+name: Fabric Chaincode and Smart Contract - Java
6
+on:
7
+ push:
8
+ branches: ["**"]
9
+ pull_request:
10
11
+ workflow_dispatch:
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - uses: actions/setup-java@v3
19
+ with:
20
+ distribution: 'temurin'
21
+ java-version: '11'
22
+ cache: 'gradle'
23
+ - run: ./gradlew build --no-daemon
0 commit comments