diff options
author | Sebastian Wiesner <sebastian@swsnr.de> | 2019-09-07 12:38:00 +0200 |
---|---|---|
committer | Sebastian Wiesner <sebastian@swsnr.de> | 2019-09-07 12:38:00 +0200 |
commit | f7f43a309cbe0eb829174b9a340004f007327092 (patch) | |
tree | 4feb280ca88a5f90756b5065fc6cf6615d62028c | |
parent | 076de75508931db9ff07e8f5044b8dc7343fcb36 (diff) |
Fix target name
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8566e59..17ddd28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,10 +101,10 @@ jobs: with: rust-version: stable - name: Setup target - run: rustup target add x86_64-pc-windows-mscv + run: rustup target add x86_64-pc-windows-msvc # Test code - uses: actions/checkout@v1 - name: Test - run: cargo test --target x86_64-pc-windows-mscv --no-default-features + run: cargo test --target x86_64-pc-windows-msvc --no-default-features - name: Format sample - run: cargo run --target x86_64-pc-windows-mscv --no-default-features + run: cargo run --target x86_64-pc-windows-msvc --no-default-features |