diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 7e3749a..b7399e8 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -19,13 +19,16 @@ jobs: submodules: recursive - name: LS - run: cd gluon && ls -alh + run: ls -alh + working-directory: gluon - name: Install Dependencies - run: gluon/contrib/actions/install-dependencies.sh + run: contrib/actions/install-dependencies.sh + working-directory: gluon - name: Build - run: gluon/contrib/actions/run-build.sh ${{ matrix.target }} + run: contrib/actions/run-build.sh ${{ matrix.target }} + working-directory: gluon - name: Archive build logs if: ${{ !cancelled() }}