From daee91904d5331f9a065487a3164a56f72dbdd54 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 28 Jan 2023 06:20:36 +0000 Subject: [PATCH] Trying to test on windows --- .github/workflows/c-cpp.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 5e72dbe..713de5f 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -8,7 +8,6 @@ on: jobs: test-valgrind: - runs-on: ubuntu-latest steps: @@ -19,10 +18,17 @@ jobs: run: make test test-sanitized: - runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: make test (sanitized) run: make test-sanitized + + test-windows: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + - name: make test (windows) + run: make test