diff --git a/.gitea/workflows/setup_native.yml b/.gitea/workflows/setup_native.yml index 05bb20500..143877ad5 100644 --- a/.gitea/workflows/setup_native.yml +++ b/.gitea/workflows/setup_native.yml @@ -5,6 +5,15 @@ on: - main jobs: + test: + runs-on: host + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + with: + ref: ${{ github.ref_name }} + - name: test venv + run: ${{ github.workspace }}/venv/bin/pip --version setup_native: if: contains(github.event.head_commit.message, '@native') runs-on: host @@ -13,7 +22,7 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.ref_name }} - + - name: Setup run: make install