Skip to content

Feature/db client (#13) #16

Feature/db client (#13)

Feature/db client (#13) #16

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Golangci-lint
uses: golangci/[email protected]
- name: Unit Tests
run: make unit-tests
- name: Acceptance Tests
run: make acceptance-tests