Skip to content

Merge pull request #70 from jmillerv/57-add-binary-builds-to-pipeline #108

Merge pull request #70 from jmillerv/57-add-binary-builds-to-pipeline

Merge pull request #70 from jmillerv/57-add-binary-builds-to-pipeline #108

Workflow file for this run

name: Go package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Apt update
run: sudo apt update --fix-missing
- name: Install dependencies
run: sudo apt install libasound2-dev libudev-dev pkg-config
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
check-latest: true
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: export CI=true && go test -v ./...
# configuration: https://github.com/golangci/golangci-lint-action
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
version: v1.53