Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
46aeef6
meta: upgrade to Go 1.20, switch to Github Actions
adamdecaf May 11, 2023
61cae8b
Merge pull request #22 from adamdecaf/project-updates
skip2 May 13, 2023
dee144e
Update alecthomas/kingpin import path to prevent "module declares its…
skip2 May 15, 2023
5e89bfd
README.md: Fix install command text
skip2 May 15, 2023
d51797a
Release v0.9.1.
skip2 May 15, 2023
d0be03e
Add -V/--version flag to print version string.
skip2 May 16, 2023
de29e80
go fmt (reformatting affects comments only)
skip2 May 16, 2023
ab90a95
Enable RFC8521 (Registration Data Access Protocol (RDAP) Object Taggi…
skip2 May 16, 2023
cdec80a
Cleanup/update documentation
skip2 May 16, 2023
de999c6
Add example output to README.md
skip2 May 16, 2023
eca9110
Tidy README.md further
skip2 May 16, 2023
8261950
Use http.ProxyFromEnvironment to select a proxy server via the HTTP_P…
skip2 May 29, 2023
0254fcd
small change to include "Organization"
keperry Nov 12, 2021
86d21b1
Merge branch 'httpproxy'
skip2 Jun 3, 2023
79e3d52
Add NewVCardWithOptions(): The only implemented option is IgnoreInval…
skip2 Feb 19, 2024
b416f22
Improve NewVCardWithOptions() documentation
skip2 Feb 19, 2024
44bb7e1
Bump golang.org/x/crypto from 0.9.0 to 0.17.0
dependabot[bot] Feb 19, 2024
2210b53
Merge pull request #26 from openrdap/dependabot/go_modules/golang.org…
skip2 Feb 19, 2024
c8ee6e0
Write JSON & Raw responses to the correct filehandle (custom stdout i…
skip2 May 17, 2024
eb57b3a
Fix indenting in --help message
skip2 May 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Go

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
name: Go Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: '>= 1.20.4'
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v3

- name: Linters
run: |
go vet ./...

- name: Test
run: |
go test ./...
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

Loading