Skip to content

Add generic support; CopyFrom(), Init() methods #1

Add generic support; CopyFrom(), Init() methods

Add generic support; CopyFrom(), Init() methods #1

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
go-version: [1.21.3]
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make ci
- name: Code coverage
run: bash <(curl -s https://codecov.io/bash)