Skip to content

Add basic request logging to rest server #115

Add basic request logging to rest server

Add basic request logging to rest server #115

Workflow file for this run

name: dracula build and test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.18' ]
name: Go v${{ matrix.go }}
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go test -v ./...
- run: go vet ./...