Skip to content

Add ability to retrieve album tracks #15

Add ability to retrieve album tracks

Add ability to retrieve album tracks #15

Workflow file for this run

name: go test
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.22.x"
cache-dependency-path: go.sum
- name: Install dependencies
run: go get ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -race ./...