30 lines
591 B
YAML
30 lines
591 B
YAML
# 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: Basic Go build and test
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19
|
|
|
|
- name: Build
|
|
run: go build -v ./...
|
|
|
|
- name : Bring up docker DB containers
|
|
run: docker compose up -d
|
|
|
|
- name: Run test
|
|
run: |
|
|
sleep 30;
|
|
go test -v ./... |