Skip to content

Add deprecation warning #58

Add deprecation warning

Add deprecation warning #58

Workflow file for this run

name: Build
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
linux-builds:
name: "linux build"
runs-on: ubuntu-latest
steps:
- name: "Set up Go"
uses: actions/setup-go@v3
with:
go-version: 1.20.x
id: go
- name: "Check out code"
uses: actions/checkout@v3
- name: "build"
run: |
go build ./...
- name: "test"
run: |
go test ./...