Skip to content

Update Yarn to v4 #2172

Update Yarn to v4

Update Yarn to v4 #2172

Workflow file for this run

name: check_go
on:
push:
paths-ignore:
- "./proto/**.proto"
workflow_call:
workflow_dispatch:
defaults:
run:
working-directory: ./go
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "go/go.mod"
cache: true
cache-dependency-path: go/go.sum
- uses: golangci/golangci-lint-action@v3
with:
version: v1.50.0
skip-cache: true
working-directory: go
- run: go test -v ./...