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

chore(): updated pipelines #2

chore(): updated pipelines

chore(): updated pipelines #2

Workflow file for this run

name: Go Test
on:
push:
branches: [main]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Run tests
run: cd pg_stream && go mod tidy && go test -v ./...