File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
src/commonTest/kotlin/com.adamratzman/spotify/utilities Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 71
71
steps :
72
72
- name : Check out repo
73
73
uses : actions/checkout@v2
74
+ - name : Install java 11
75
+ uses : actions/setup-java@v2
76
+ with :
77
+ distribution : ' adopt'
78
+ java-version : ' 11'
74
79
- name : Test windows
75
80
run : gradle mingwX64Test
76
81
- name : Archive test results
Original file line number Diff line number Diff line change 68
68
steps :
69
69
- name : Check out repo
70
70
uses : actions/checkout@v2
71
+ - name : Install java 11
72
+ uses : actions/setup-java@v2
73
+ with :
74
+ distribution : ' adopt'
75
+ java-version : ' 11'
71
76
- name : Publish windows
72
77
run : gradle publishMingwX64PublicationToNexusRepository
73
78
release_docs :
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class UtilityTests {
32
32
if (! testPrereq()) return
33
33
34
34
runBlockingTest {
35
- val spotifyWfhPlaylist = api!! .playlists.getPlaylist(" spotify:playlist: 37i9dQZF1DWTLSN7iG21yC" )!!
35
+ val spotifyWfhPlaylist = api!! .playlists.getPlaylist(" 37i9dQZF1DWTLSN7iG21yC" )!!
36
36
val totalTracks = spotifyWfhPlaylist.tracks.total
37
37
val allTracks = spotifyWfhPlaylist.tracks.getAllItemsNotNull()
38
38
assertEquals(totalTracks, allTracks.size)
You can’t perform that action at this time.
0 commit comments