Bump github.com/hashicorp/golang-lru from 0.6.0 to 1.0.2 #161
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |