Skip to content

Bump github.com/gen2brain/beeep from 0.11.1 to 0.11.2 #207

Bump github.com/gen2brain/beeep from 0.11.1 to 0.11.2

Bump github.com/gen2brain/beeep from 0.11.1 to 0.11.2 #207

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions: {}
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 'stable'
check-latest: 'true'
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: Build
run: make build
- name: Test
run: go test -v -race ./...