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

Bump github.com/supranational/blst from 0.3.11-0.20230406105308-e9dfc5ee724b to 0.3.11 #38

Bump github.com/supranational/blst from 0.3.11-0.20230406105308-e9dfc5ee724b to 0.3.11

Bump github.com/supranational/blst from 0.3.11-0.20230406105308-e9dfc5ee724b to 0.3.11 #38

Workflow file for this run

name: Go
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ['1.20']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Configure git for private relab repo
env:
TOKEN: ${{ secrets.CT_SECRET }}
run: git config --global url."https://relab-robot:${TOKEN}@github.com".insteadOf "ssh://[email protected]"
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Set git to use LF
# make sure that line endings are not converted on windows
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Setup protoc
uses: arduino/[email protected]
- name: Install tools
run: make tools
- name: Build Source
run: make build
- name: Make cli
run: make bench
- name: Vet
run: make vet
- name: Test with Race Detector
run: make racetest