Skip to content

build(deps): bump github.com/spf13/viper from 1.16.0 to 1.17.0 #127

build(deps): bump github.com/spf13/viper from 1.16.0 to 1.17.0

build(deps): bump github.com/spf13/viper from 1.16.0 to 1.17.0 #127

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- name: Install alsa
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev
- name: Install udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libudev-dev
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v .