Skip to content

Update github.com/hyperledger/fabric-lib-go to v1.1.4 #482

Update github.com/hyperledger/fabric-lib-go to v1.1.4

Update github.com/hyperledger/fabric-lib-go to v1.1.4 #482

Workflow file for this run

# Copyright the Hyperledger Fabric contributors. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
name: Pull Request
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
workflow_dispatch:
env:
GOPATH: /opt/go
PATH: /opt/go/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin
permissions:
contents: read
jobs:
verify-build:
name: Verify Build
runs-on: ubuntu-22.04
steps:
- run: sudo apt clean
name: Run APT Clean
- run: sudo apt update
name: Run Apt Update
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
name: Checkout Fabric CA Code
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
name: Install Go
with:
go-version-file: go.mod
- run: make dist checks all-tests docs
name: Run Unit and Integration Tests
fvt-tests:
name: FVT Tests
runs-on: ubuntu-22.04
steps:
- run: sudo apt clean
name: Run APT Clean
- run: sudo apt update
name: Run Apt Update
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
name: Checkout Fabric CA Code
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
name: Install Go
with:
go-version-file: go.mod
- run: make fvt-tests
name: Run FVT Tests