Skip to content

Add NOT NULL constraint (#46) #106

Add NOT NULL constraint (#46)

Add NOT NULL constraint (#46) #106

Workflow file for this run

name: test
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Start container with test databases
run: docker-compose -f test/docker-compose.yaml up -d
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Install tparse for pretty test results
run: go install github.com/mfridman/tparse@latest
- name: Run test
run: make test-all