Skip to content

refactor(ecache): rename sub package name from 'memory' to 'miniredis'. #15

refactor(ecache): rename sub package name from 'memory' to 'miniredis'.

refactor(ecache): rename sub package name from 'memory' to 'miniredis'. #15

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20
- name: Install dependencies
run: |
go get github.com/BurntSushi/toml@v1.2.1
go get github.com/bwmarrin/snowflake@v0.3.0
go get github.com/dromara/carbon/v2@v2.2.3
go get github.com/nicksnyder/go-i18n/v2@v2.2.1
go get github.com/stretchr/testify@v1.8.1
go get golang.org/x/exp
go get golang.org/x/text@v0.7.0
go get google.golang.org/grpc@v1.53.0
go get gopkg.in/guregu/null.v4@v4.0.0
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...