Channel configuration MSP information refactoring #106
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
name: Fabric Integration Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repository | |
uses: "actions/checkout@v2" | |
- name: Setup JDK 11 | |
uses: "actions/setup-java@v2" | |
with: | |
java-version: '11' | |
distribution: 'adopt-openj9' | |
- name: Run integration tests | |
run: | | |
chmod +x ./scripts/run-integration-tests.sh | |
./scripts/run-integration-tests.sh |