Skip to content

fix: the relationship between database and timeserieas is incorrect #1

fix: the relationship between database and timeserieas is incorrect

fix: the relationship between database and timeserieas is incorrect #1

Workflow file for this run

name: Build
on:
- pull_request
jobs:
Test:
runs-on: ubuntu-20.04
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22.x
- uses: actions/checkout@v3.0.0
- name: Unit Test
run: |
make test
Build:
runs-on: ubuntu-20.04
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22.x
- uses: actions/checkout@v3.0.0
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: '~> v2'
args: release --clean --snapshot
BuildImage:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3.0.0
- name: Image
run: make build-image
RunE2E:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3.0.0
- name: Run e2e
run: |
sudo curl -L https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
sudo chmod u+x /usr/local/bin/docker-compose
make run-e2e