Add support for dedicated chaincode nodes #125
Workflow file for this run
This file contains hidden or 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: Skip status checks | |
| on: | |
| pull_request: | |
| paths: | |
| - '*.md' | |
| - 'docs/**' | |
| - 'samples/**' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: 'echo "No lint required"' | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| goarch: [amd64] | |
| steps: | |
| - run: 'echo "No build required"' | |
| docker_build: | |
| name: Docker build | |
| uses: ./.github/workflows/status-checks-docker.yml |