Skip to content

Merge pull request #15 from imthaghost/refactor/soundcloud-client #18

Merge pull request #15 from imthaghost/refactor/soundcloud-client

Merge pull request #15 from imthaghost/refactor/soundcloud-client #18

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