windows-ext 0.0.4

Extensions to windows-rs that serve to provide the macros and header-only functions from the Windows SDK
Documentation
name: Test

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

jobs:
  test:
    name: Test on ${{matrix.version}}-${{matrix.target}}
    strategy:
      matrix:
        version:
          - stable
          - nightly
        target:
          - x86_64-pc-windows-msvc
          - i686-pc-windows-msvc

    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@master
        with:
          toolchain: ${{matrix.version}}-${{matrix.target}}
      - name: test
        run: cargo test