From 68ad3e3109bdaa2af3831344bd28618ecad495f8 Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 23 Apr 2025 13:50:13 +0200 Subject: [PATCH] implement automated testing CI pipeline --- .github/workflows/ci-tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml index 6eaee55..4af80a2 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -15,7 +15,7 @@ jobs: matrix: arch: - linux-x86_64 - - win-x86_64 + # WARN: not testing win-x86_64... Probably a good idea to do that steps: - # TODO: add unit test job here - - run: echo "TODO" + - uses: actions/checkout@v4 + - run: make run-test ARCH=${{matrix.arch}} -j