Skip to content

feat: replication: implement REPLCONF GETACK & ACK commands (#15) #52

feat: replication: implement REPLCONF GETACK & ACK commands (#15)

feat: replication: implement REPLCONF GETACK & ACK commands (#15) #52

Workflow file for this run

name: lint-and-test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
checks: write
jobs:
lint-and-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22.3"
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: "latest"
args: --out-format=colored-line-number --timeout=5m
- name: go test
run: go test -v ./...