Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Bump github.com/consensys/gnark-crypto from 0.12.0 to 0.12.1 #367

Bump github.com/consensys/gnark-crypto from 0.12.0 to 0.12.1

Bump github.com/consensys/gnark-crypto from 0.12.0 to 0.12.1 #367

Workflow file for this run

name: hygeiene
on:
push:
branches: [ "master", "development" ]
pull_request:
branches: [ "master", "development" ]
jobs:
ensure-mock-gen:
# Generation assurance test workflow
# (e.g. no uncovered diffs in go-mocks)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Install mockgen
run: go install github.com/golang/mock/[email protected]
- name: Mock diff check
run: make go-gen-mocks && git diff --exit-code
golangci:
# Linting job
# https://github.com/golangci/golangci-lint-action
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.52.1
markdown-linting:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install markdownlint CLI
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint '**/*.md'