Skip to content

Commit 39c57fb

Browse files
authored
Merge pull request #278 from pietroalbini/appveyor
Run `cargo check` on Appveyor
2 parents aea8214 + 70be4fe commit 39c57fb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

appveyor.yml

Lines changed: 24 additions & 0 deletions
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)