Skip to content

feat: Store Interface and In-memory Store #12

feat: Store Interface and In-memory Store

feat: Store Interface and In-memory Store #12

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
jobs:
api-test:
runs-on: ubuntu-latest
services:
docker:
image: docker:19.03.12
options: --privileged
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f
- uses: actions/setup-go@v4
with:
go-version: 1.22.2
- name: "Install Deps"
run: |
go install github.com/k1LoW/runn/cmd/runn@latest
- name: "Start Server"
run: |
go run go/cmd/open-ve/main.go run --http-addr=:8080 &
- name: "Run runn"
run: |
export ENDPOINT=http://0.0.0.0:8080
make api-test