From ce37f52deb7f0146c1536179ad865afcd0ec9b45 Mon Sep 17 00:00:00 2001 From: NSoiffer Date: Tue, 27 Feb 2024 18:17:04 -0800 Subject: [PATCH] Add testing to auto builds --- .github/workflows/automaticRelease.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/automaticRelease.yaml b/.github/workflows/automaticRelease.yaml index 76dbbdc..c481045 100644 --- a/.github/workflows/automaticRelease.yaml +++ b/.github/workflows/automaticRelease.yaml @@ -17,6 +17,10 @@ jobs: uses: actions/checkout@v3 - name: Build 64 bit version run: cargo build --target x86_64-pc-windows-msvc --release + - name: test build + run: | + gcc test.cpp -o test -L../target/release/ -llibmathcat_c + ./test.exe - name: create libmathcat64 uses: thedoctor0/zip-release@0.7.5 with: