Skip to content

Commit 2da7c9a

Browse files
author
gfrederick
committed
update workflow
1 parent 6b0b591 commit 2da7c9a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/master-workflow.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99
jobs:
1010
test:
1111
name: Run Unit Test
12-
runs-on: ubuntu-20.04(ubuntu-latest)
12+
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@master
16-
- name: Go 1.21.4
15+
uses: actions/checkout@v2
16+
- name: Set up Go
1717
uses: actions/setup-go@v2
1818
with:
1919
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
20+
- name: Test SoundCloud Package
21+
run: go test ./pkg/soundcloud/... -v
22+
- name: Test Utils Package
23+
run: go test ./pkg/utils/... -v

0 commit comments

Comments
 (0)