From 0204e2f84921afd589a08b9ab86332dd792bcb2e Mon Sep 17 00:00:00 2001 From: mappu Date: Sat, 19 Oct 2024 15:53:15 +1300 Subject: [PATCH] ci: run marshalling_test automatically in pipeline --- .github/workflows/miqt.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/miqt.yml b/.github/workflows/miqt.yml index 798cc876..4f2c7e4c 100644 --- a/.github/workflows/miqt.yml +++ b/.github/workflows/miqt.yml @@ -45,8 +45,8 @@ jobs: path: ~/.cache/go-build key: linux64-gocache - - name: Linux64 bindings compile - run: docker run -v ~/.cache/go-build:/root/.cache/go-build -v $PWD:/src -w /src miqt/linux64:latest /bin/bash -c 'cd qt && go build' + - name: Linux64 bindings compile and test + run: docker run -v ~/.cache/go-build:/root/.cache/go-build -v $PWD:/src -w /src miqt/linux64:latest /bin/bash -c 'cd qt && go build && cd ../examples/marshalling && env QT_QPA_PLATFORM=offscreen go test -v' miqt_win64: runs-on: ubuntu-22.04