From 9955c1986cf77572285ba7e7e35b00f96b5f7692 Mon Sep 17 00:00:00 2001 From: Artur Mukhamadiev Date: Mon, 2 Mar 2026 21:09:12 +0300 Subject: [PATCH] workflow build&test 2 --- .gitea/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 9c1b9c9..f9028e1 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -12,8 +12,9 @@ jobs: DEBIAN_FRONTEND=noninteractive apt install -y cmake make ninja-build gcc - name: Prepare Environment run: | - python3 -m venv ~/py/ - source ~/py/bin/activate + python3 -m venv $HOME/py/ + source $HOME/py/bin/activate + echo PATH=$PATH >> $GITEA_ENV pip install meson - name: Check out repository code uses: actions/checkout@v4 @@ -22,7 +23,6 @@ jobs: - name: Build project run: | cd ${{ gitea.workspace }} - source ~/py/bin/activate meson setup build meson compile -C build - name: Unit Test Results