We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b0b591 commit 2da7c9aCopy full SHA for 2da7c9a
.github/workflows/master-workflow.yml
@@ -9,15 +9,15 @@ on:
9
jobs:
10
test:
11
name: Run Unit Test
12
- runs-on: ubuntu-20.04(ubuntu-latest)
+ runs-on: ubuntu-latest
13
steps:
14
- name: Checkout
15
- uses: actions/checkout@master
16
- - name: Go 1.21.4
+ uses: actions/checkout@v2
+ - name: Set up Go
17
uses: actions/setup-go@v2
18
with:
19
go-version: 1.21.4
20
- - name: SoundCloud Package
21
- run: go test pkg/soundcloud/* -v
22
- - name: Utils Package
23
- run: go test pkg/utils/* -v
+ - name: Test SoundCloud Package
+ run: go test ./pkg/soundcloud/... -v
+ - name: Test Utils Package
+ run: go test ./pkg/utils/... -v
0 commit comments