Skip to content

build: upgrade github.com/dgraph-io/ristretto to v1 #328

build: upgrade github.com/dgraph-io/ristretto to v1

build: upgrade github.com/dgraph-io/ristretto to v1 #328

Workflow file for this run

name: test
on:
push:
branches-ignore:
- renovate/**
pull_request:
branches:
- master
env:
GOTOOLCHAIN: "local"
jobs:
docker:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Go Build Cache (build)
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg
key: go-cache-122-${{ hashFiles('**/go.sum') }}-test
restore-keys: |
go-cache-122-${{ hashFiles('**/go.sum') }}-
- run: go test ./...