Skip to content

[ARCHIVED] Add CI/CD pipelines for pushed tags #36

[ARCHIVED] Add CI/CD pipelines for pushed tags

[ARCHIVED] Add CI/CD pipelines for pushed tags #36

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
jobs:
formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Go mod tidy checker
id: gomodtidy
run: docker build --build-arg CACHEBUST=$(date +%s) -f .github/actions/gomodtidy/Dockerfile -t gomodtidy ${{ github.workspace }}
- name: Run Go mod tidy checker
run: docker run gomodtidy ${{ secrets.GH_TOKEN }}
gosec:
name: Gosec scan
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.20.3
uses: actions/setup-go@v4
with:
go-version: '1.20.3'
# cache: false
id: go
- name: Run Gosec Security Scanner
run: | # https://github.com/securego/gosec/issues/469
export PATH=$PATH:$(go env GOPATH)/bin
go install github.com/securego/gosec/v2/cmd/gosec@v2.15.0
gosec -exclude=G307 -exclude-dir=crypto/bls/herumi ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.20.3
uses: actions/setup-go@v4
with:
go-version: '1.20.3'
# cache: false
- name: Golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
args: --config=.golangci.yml --out-${NO_FUTURE}format colored-line-number
skip-pkg-cache: true
skip-build-cache: true
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20.3
uses: actions/setup-go@v4
with:
go-version: '1.20.3'
id: go
- name: Check out code into the Go module directoryrm -rf bo
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
# Use blst tag to allow go and bazel builds for blst.
run: go build -v ./...
env:
CGO_CFLAGS: "-O2 -D__BLST_PORTABLE__"
# fuzz leverage go tag based stubs at compile time.
# Building and testing with these tags should be checked and enforced at pre-submit.
- name: Test for fuzzing
run: go test -tags=fuzz,develop ./... -test.run=^Fuzz
env:
CGO_CFLAGS: "-O2 -D__BLST_PORTABLE__"
# # Tests run via Bazel for now...
# - name: Test
# run: go test -v ./...