This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
build(deps): bump google.golang.org/grpc from 1.37.0 to 1.56.3 #224
Workflow file for this run
This file contains 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: Continuous integration | |
on: [push, pull_request] | |
env: | |
GOLANGCI_LINT_URL: https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | |
SGX_MODE: SIM | |
jobs: | |
build: | |
name: Build with Go ${{ matrix.go }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-18.04, ubuntu-20.04] | |
go: [1.13, 1.15, 1.16] | |
steps: | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install GolangCI-Lint | |
run: | | |
curl -sfL $GOLANGCI_LINT_URL | sudo sh -s -- -b /usr/local/bin | |
- uses: actions/checkout@v2 | |
- name: Install Intel SGX SDK | |
run: | | |
sudo ./tools/install-sgx-sdk.sh | |
- name: Test | |
run: | | |
source /opt/intel/sgxsdk/environment | |
LD_LIBRARY_PATH="$PWD/usig/sgx/shim:$LD_LIBRARY_PATH" \ | |
GOFLAGS="-short" \ | |
make build check | |
- name: Lint | |
run: | | |
make lint |