-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3efa1cc
commit d45e779
Showing
1 changed file
with
28 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
# Setup Corda 5 CLI Action | ||
# Corda 5 CLI Action | ||
|
||
Adds Corda 5 CLI to your [GitHub actions](https://github.com/features/actions). | ||
Works well with [corda5-testutils](https://github.com/manosbatsis/corda5-testutils). | ||
|
||
Example workflow fragment: | ||
|
||
```yaml | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
- name: Setup Corda CLI | ||
uses: manosbatsis/setup-corda5-cli-action@test17 | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: build test | ||
``` | ||
WiP |