Skip to content

implement multi module and add multi module functionality #21

implement multi module and add multi module functionality

implement multi module and add multi module functionality #21

Workflow file for this run

name: DGate CI
on:
push:
branches: [ "**" ]
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Build & Install
run: |
go mod download
go build -v ./...
- name: Test
run: |
go test -coverprofile=coverage.txt -v ./...
go tool cover -func=coverage.txt
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: dgate-io/dgate
- name: Benchmark
run: |
go test -bench=. -run=^# ./...