We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 111f845 commit 2fb58eeCopy full SHA for 2fb58ee
.github/workflows/ci.yml
@@ -139,9 +139,11 @@ jobs:
139
--partial
140
141
Windows:
142
- name: Windows (Stubs)
+ name: Windows
143
runs-on: windows-latest
144
145
+ needs: Linux
146
+
147
strategy:
148
matrix:
149
go: [ 'oldstable', 'stable' ]
.scripts/windows.ps1
@@ -1,3 +1,5 @@
1
+$env:EK_TEST_PORT = "8080"
2
3
<# Download dependencies #>
4
function Get-Deps {
5
go get -v golang.org/x/crypto/bcrypt
@@ -9,5 +11,11 @@ function Install-All {
9
11
go install ./...
10
12
}
13
14
+<# Runt tests #>
15
+function Run-Tests {
16
+ go test ./...
17
+}
18
19
Get-Deps
20
Install-All
21
+Run-Tests
0 commit comments