Bump github.com/consensys/gnark-crypto from 0.13.0 to 0.18.1 in the go_modules group across 1 directory #87
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
| # Copyright IBM Corp. All Rights Reserved. | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # | |
| name: CI | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| lint: | |
| name: Lint and Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - run: scripts/install-dev-dependencies.sh | |
| - name: Lint | |
| run: | | |
| # Apply automatic formatting. | |
| gofmt -w . | |
| goimports -local "github.com/hyperledger/fabric-x-common" -w . | |
| # Check if original code changed due to formatting. | |
| git diff --exit-code | |
| # Fetch main to only show new lint issues. | |
| git fetch -u origin main:main | |
| make lint | |
| - name: Build tools | |
| run: make tools | |
| test: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - run: scripts/install-dev-dependencies.sh | |
| - run: make test |