Compare commits

...

2 commits

Author SHA1 Message Date
684861bde3 Update module github.com/gopxl/beep to v2 2024-12-15 10:15:55 +00:00
0ede463e4f
Added basic "build" test for sanity
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-12-15 11:27:08 +02:00
3 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,24 @@
name: build bin
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
name: Make sure build does not fail
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- run: go version
- run: make dep
- run: make build

View file

@ -24,7 +24,7 @@ test_coverage:
go test ./... -coverprofile=coverage.out go test ./... -coverprofile=coverage.out
dep: dep:
go mod download go mod vendor
vet: vet:
go vet go vet

2
go.mod
View file

@ -7,7 +7,7 @@ require (
github.com/delucks/go-subsonic v0.0.0-20240806025900-2a743ec36238 github.com/delucks/go-subsonic v0.0.0-20240806025900-2a743ec36238
github.com/gdamore/tcell/v2 v2.7.4 github.com/gdamore/tcell/v2 v2.7.4
github.com/godbus/dbus/v5 v5.1.0 github.com/godbus/dbus/v5 v5.1.0
github.com/gopxl/beep v1.4.1 github.com/gopxl/beep/v2 v2.1.0
github.com/gopxl/beep/v2 v2.1.0 github.com/gopxl/beep/v2 v2.1.0
github.com/quarckster/go-mpris-server v1.0.3 github.com/quarckster/go-mpris-server v1.0.3
github.com/rivo/tview v0.0.0-20241103174730-c76f7879f592 github.com/rivo/tview v0.0.0-20241103174730-c76f7879f592