Skip to content

Commit 70be4fe

Browse files
committed
ci: run cargo check on appveyor
1 parent aea8214 commit 70be4fe

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

appveyor.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
environment:
2+
matrix:
3+
- TARGET: x86_64-pc-windows-msvc
4+
CHANNEL: stable
5+
6+
matrix:
7+
allow_failures:
8+
- CHANNEL: nightly
9+
10+
cache:
11+
- C:\Users\appveyor\.cargo\registry
12+
- target
13+
14+
install:
15+
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
16+
- rustup-init.exe -y --default-toolchain %CHANNEL% --default-host %TARGET%
17+
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
18+
- rustc -V
19+
- cargo -V
20+
21+
build: false
22+
23+
test_script:
24+
- cargo check

0 commit comments

Comments
 (0)