twoGiants is running the Test Network Ledger tests 🥑 #814
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
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: Test Network Ledger 🥑 | |
run-name: ${{ github.actor }} is running the Test Network Ledger tests 🥑 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main", "release-2.5" ] | |
pull_request: | |
branches: [ "main", "release-2.5" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
basic: | |
runs-on: ${{ github.repository == 'hyperledger/fabric-samples' && 'fabric-ubuntu-22.04' || 'ubuntu-22.04' }} | |
strategy: | |
matrix: | |
chaincode-language: | |
- go | |
- javascript | |
chaincode-name: | |
- ledger | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up the test network runtime | |
uses: ./.github/actions/test-network-setup | |
- name: Run Test | |
working-directory: test-network | |
run: ../ci/scripts/run-test-network-ledger.sh | |
env: | |
CHAINCODE_NAME: ${{ matrix.chaincode-name }} | |
CHAINCODE_LANGUAGE: ${{ matrix.chaincode-language }} |