Skip to content

Codec & serializer - initial implementation #5

Codec & serializer - initial implementation

Codec & serializer - initial implementation #5

Workflow file for this run

name: Run tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.20.7
- uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...