Skip to content

feat: added proto3 optional support to fastmarshal #339

feat: added proto3 optional support to fastmarshal

feat: added proto3 optional support to fastmarshal #339

Workflow file for this run

name: lint-and-test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
csproto:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- name: lint
uses: golangci/[email protected]
with:
github-token: ${{ github.token }}
- name: test
run: go test -v -race ./...
example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- name: lint
uses: golangci/[email protected]
with:
github-token: ${{ github.token }}
working-directory: ./example
- name: test
run: go test -v -race ./...
working-directory: ./example
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
- name: protoc-gen-fastmarshal
run: go build ./cmd/protoc-gen-fastmarshal
- name: protodump
run: go build ./cmd/protodump