From 2a2c3ecb4527cad202fc0925d271fc3de0cc4247 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Tue, 1 Nov 2022 06:08:10 +0100 Subject: [PATCH] Run unit and smoke tests on all platforms --- .github/workflows/cpp.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index e893e8a..26bca22 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -16,8 +16,10 @@ jobs: run: ls uWebSockets - name: Install Deno run: curl -fsSL https://deno.land/x/install/install.sh | sh - - name: Build tests + - name: Run smoke test run: make -C uWebSockets/tests smoke + - name: Run unit tests + run: make -C uWebSockets/tests build_osx: @@ -30,5 +32,9 @@ jobs: run: make -C uWebSockets - name: List binaries run: ls uWebSockets - - name: Build tests + - name: Install Deno + run: curl -fsSL https://deno.land/x/install/install.sh | sh + - name: Run smoke test + run: make -C uWebSockets/tests smoke + - name: Run unit tests run: make -C uWebSockets/tests