Skip to content

feat: If http-port is not specified, the http service is disabled to … #489

feat: If http-port is not specified, the http service is disabled to …

feat: If http-port is not specified, the http service is disabled to … #489

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
name: tests
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: '1.21'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Start docker-compose
run: |
docker-compose --version
docker-compose up -d
- name: Build
run: make build
- name: unittest
run: make gotest
- name: benchtest
run: make benchtest
- name: systest
run: make systest
- name: Stop docker-compose
run: docker-compose down