Skip to content

Bump github.com/hashicorp/golang-lru from 0.6.0 to 1.0.2 #161

Bump github.com/hashicorp/golang-lru from 0.6.0 to 1.0.2

Bump github.com/hashicorp/golang-lru from 0.6.0 to 1.0.2 #161

Workflow file for this run

name: E2E
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: E2E
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Starting dependencies
run: |
docker-compose up -d
sleep 10
working-directory: ./examples/
- name: Starting service
run: |
go build .
nohup ./service &
working-directory: ./examples/service
- name: Starting client
run: |
sleep 10
go run main.go
working-directory: ./examples/client