Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Update external go packages #526

Update external go packages

Update external go packages #526

Workflow file for this run

name: "CI"
on: [push, pull_request]
jobs:
basic-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.19.1"
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: "Formatting check"
run: make fmt
- name: "Compile"
run: make build
- name: "Test"
run: make test