Skip to content

Add support for COPY IN protocol #3

Add support for COPY IN protocol

Add support for COPY IN protocol #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Restore bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}
- name: Run linter
run: make lint
- name: Cache bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Restore bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}
- name: Run tests
run: make test
- name: Cache bin
uses: actions/cache@v3
with:
path: ./bin
key: ${{ runner.os }}-bin-${{ hashFiles('**/go.sum') }}