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

chore(): updated ci

chore(): updated ci #4

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
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 ./...