Skip to content

Add sound toggle for Goose-haters #13

Add sound toggle for Goose-haters

Add sound toggle for Goose-haters #13

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: ['1.21']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y gcc libgl1-mesa-dev xorg-dev
- name: Lint
if: matrix.os != 'windows-latest'
run: make lint
- name: Build
run: make build
- name: Test
run: go test -v -race ./...