diff options
-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 |