Skip to content

Refactor/soundcloud client #17

Refactor/soundcloud client

Refactor/soundcloud client #17

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Run Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4
- name: Test SoundCloud Package
run: go test ./pkg/soundcloud/... -v
- name: Test Utils Package
run: go test ./pkg/utils/... -v