Skip to content

refactor(database): addLog structure (#29) #65

refactor(database): addLog structure (#29)

refactor(database): addLog structure (#29) #65

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: Unit tests
run: make unit_test
- name: Race tests
run: make test_race