Skip to content

Commit 06f2f29

Browse files
committed
ci: update windows-ci flow version
1 parent 998ca87 commit 06f2f29

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/windows-ci.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Windows CI
22

33
on:
44
pull_request:
5-
types: [labeled, synchronize, reopened]
5+
types: [ labeled, synchronize, reopened ]
66
workflow_dispatch:
77

88
permissions:
@@ -29,10 +29,10 @@ jobs:
2929
- name: Run unit tests
3030
uses: flowexec/action@v1
3131
with:
32-
executable: 'test unit'
33-
params: 'CI=true'
34-
timeout: '5m'
35-
flow-version: 'v2.0.0-beta.3'
32+
executable: "test unit"
33+
params: "CI=true"
34+
timeout: "5m"
35+
flow-version: "main"
3636
- name: Upload unit test coverage
3737
if: always()
3838
uses: actions/upload-artifact@v7
@@ -56,10 +56,10 @@ jobs:
5656
- name: Run E2E tests
5757
uses: flowexec/action@v1
5858
with:
59-
executable: 'test e2e'
60-
params: 'CI=true'
61-
timeout: '10m'
62-
flow-version: 'v2.0.0-beta.3'
59+
executable: "test e2e"
60+
params: "CI=true"
61+
timeout: "10m"
62+
flow-version: "main"
6363
secrets: |
6464
test-secret=test-value-from-action
6565
another-secret=another-test-value
@@ -86,9 +86,9 @@ jobs:
8686
- name: Build flow binary
8787
uses: flowexec/action@v1
8888
with:
89-
executable: 'build binary'
90-
timeout: '10m'
91-
flow-version: 'v2.0.0-beta.3'
89+
executable: "build binary"
90+
timeout: "10m"
91+
flow-version: "latest" # use latest to test the install script
9292
- name: Upload built binary
9393
uses: actions/upload-artifact@v7
9494
with:
@@ -115,9 +115,9 @@ jobs:
115115
- name: Run binary smoke test
116116
uses: flowexec/action@v1
117117
with:
118-
executable: 'test binary'
119-
timeout: '5m'
120-
flow-version: 'v2.0.0-beta.3'
118+
executable: "test binary"
119+
timeout: "5m"
120+
flow-version: "main"
121121

122122
native-scripts:
123123
name: "Test / native script execution (Windows)"
@@ -135,14 +135,14 @@ jobs:
135135
- name: Run .bat and .ps1 file execution tests
136136
uses: flowexec/action@v1
137137
with:
138-
executable: 'test windows-scripts'
139-
timeout: '5m'
140-
flow-version: 'v2.0.0-beta.3'
138+
executable: "test windows-scripts"
139+
timeout: "5m"
140+
flow-version: "main"
141141

142142
windows-validation-complete:
143143
name: "Windows validation complete"
144144
runs-on: ubuntu-latest
145-
needs: [unit-tests, e2e-tests, build-binary, binary-smoke, native-scripts]
145+
needs: [ unit-tests, e2e-tests, build-binary, binary-smoke, native-scripts ]
146146
if: always()
147147
steps:
148148
- name: Evaluate results and write summary

0 commit comments

Comments
 (0)