Build rive tests
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index a2ebf12..5e5b5c9 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -38,15 +38,29 @@
       - name: Add msbuild to PATH
         uses: microsoft/setup-msbuild@v1.1
 
-      - name: Download Premake5
+      - name: Download Premake
         shell: powershell
         run: |
           echo GITHUB_WORKSPACE is ${{ github.workspace }}
           wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-windows.zip -OutFile ${{ github.workspace }}\premake-5.0.0-beta1-windows.zip
           Expand-Archive -LiteralPath ${{ github.workspace }}\premake-5.0.0-beta1-windows.zip -DestinationPath C:\
+
+      - name: Build rive.lib
+        shell: powershell
+        run: |
           cd build
           C:\premake5.exe vs2022
           MSBuild rive.sln /property:Configuration=Debug /property:Platform=x64
+          ls windows\obj\debug\
+          cd ..
+
+      - name: Build rive tests
+        shell: powershell
+        run: |
+          cd dev/test
+          C:\premake5.exe vs2022
+          MSBuild rive.sln /property:Configuration=Debug /property:Platform=x64
+          ls windows\obj\debug\
 
   build-macos:
     runs-on: macOS-latest