exec-target 0.2.10

the simple invoke command for test
Documentation
name: Test-win

on:
  push:
    branches: [ main ]
  workflow_dispatch:

permissions:
  contents: read

env:
  RUSTFLAGS: -Dwarnings
  CARGO_TERM_COLOR: always

jobs:
  test:
    name: Test rust ${{matrix.rust}} on ${{matrix.os}}
    runs-on: ${{matrix.os}}
    strategy:
      fail-fast: false
      matrix:
        rust: [beta, stable, 1.58.0]
        os: [windows-latest]
    timeout-minutes: 45
    steps:
      - uses: actions/checkout@v3
      - uses: dtolnay/rust-toolchain@stable
        with:
          toolchain: ${{matrix.rust}}
          components: rust-src
      - run: cargo test -p test-helper