Skip to content

Change address to HewlettPackard and add copyright (#22) #1

Change address to HewlettPackard and add copyright (#22)

Change address to HewlettPackard and add copyright (#22) #1

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
lint:
name: GolangCI Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: GolangCI Lint
uses: golangci/golangci-lint-action@v3
with:
# TODO: Update this version.
version: v1.56.2
args: --out-format=colored-line-number
test:
name: Go Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Go Test
run: go test -v ./...