Skip to content

add more record type #19

add more record type

add more record type #19

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
cache: true
- run: go mod download
- name: Build
run: make
- name: Fmt
run: make fmt
- name: Test
run: make test