Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
neilotoole committed Mar 13, 2024
1 parent 0c0c9cd commit e3d05bb
Show file tree
Hide file tree
Showing 16 changed files with 2,737 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Go

on:
push:
pull_request:

env:
GOLANGCI_LINT_VERSION: v1.56.2

jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod

- name: Build
run: go build -v ./...

- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
skip-cache: true
version: ${{ env.GOLANGCI_LINT_VERSION }}

- name: Test
run: go test -v ./...
Loading

0 comments on commit e3d05bb

Please sign in to comment.