Skip to content

DEBT: Upgraded Go dependencies #34

DEBT: Upgraded Go dependencies

DEBT: Upgraded Go dependencies #34

Workflow file for this run

# Ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
name: ci
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Preamble
run: |
whoami
echo github ref $GITHUB_REF
echo workflow $GITHUB_WORKFLOW
echo home $HOME
echo event name $GITHUB_EVENT_NAME
echo workspace $GITHUB_WORKSPACE
df -h
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common ca-certificates gnupg-agent curl build-essential make python3-pip golang-goprotobuf-dev protobuf-compiler parallel
# Ref: https://github.com/actions/setup-go
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ">= 1.21"
# Ref: https://github.com/actions/checkout
- name: Checkout Source
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build
run: |
make build