Skip to content

build(deps): bump actions/checkout from 3 to 4 #7

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #7

Workflow file for this run

name: Go package
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Update dependencies
run: go get ./...
- name: Install golint
run: sudo apt-get install -y golint
- name: Install and Run Pre-commit
uses: pre-commit/[email protected]
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -cover