Skip to content

ci: fix the dependency download #4

ci: fix the dependency download

ci: fix the dependency download #4

Workflow file for this run

name: Go OVP8xx package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Install dependencies
run: go get -d ./...
- name: Build
run: go build -v ./...
- name: Build the CLI
run: go build cmd/ovp8xx/ovp8xx.go
- name: Test
run: go test -v ./...