Skip to content

update dockerfile base image and update container workflow file #28

update dockerfile base image and update container workflow file

update dockerfile base image and update container workflow file #28

name: DGate Build/Test/Bench
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=cov.out -v ./...
go tool cover -func=cov.out
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: dgate-io/dgate
- name: Benchmark
run: |
go test -bench=. -run=^# ./...