Skip to content

Commit e3e199b

Browse files
CI: fix windows job
working-directory can't be used with uses/with
1 parent 8ac0b37 commit e3e199b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/windows-msvc.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,20 +107,17 @@ jobs:
107107
args: --features v4_10,xml_validation
108108

109109
- name: Build gdk-win32
110-
working-directory: /gdk4-win32
111110
uses: actions-rs/cargo@v1
112111
with:
113112
command: build
114-
args: --features egl,win32
113+
args: --features egl,win32 --manifest-path ./gdk4-win32/Cargo.toml
115114
- name: Clippy gdk-win32
116-
working-directory: /gdk4-win32
117115
uses: actions-rs/cargo@v1
118116
with:
119117
command: clippy
120-
args: --features egl,win32
118+
args: --features egl,win32 --manifest-path ./gdk4-win32/Cargo.
121119
- name: Tests gdk-win32
122-
working-directory: /gdk4-win32
123120
uses: actions-rs/cargo@v1
124121
with:
125122
command: test
126-
args: --features egl,win32
123+
args: --features egl,win32 --manifest-path ./gdk4-win32/Cargo.

0 commit comments

Comments
 (0)