Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Add license

Add license #8

Workflow file for this run

name: Go Test
on:
push:
branches: [main]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./pg_stream
services:
dind:
image: docker:23.0-rc-dind-rootless
ports:
- 2375:2375
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./...