Skip to content

Remove redundant logger #83

Remove redundant logger

Remove redundant logger #83

Workflow file for this run

name: Golang CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
# need checkout before using compose-action
- uses: actions/checkout@v3
- name: Start db
uses: isbang/[email protected]
with:
down-flags: "--volumes"
services: |
db
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Build
run: make build
- name: Test
run: make test