diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 9be76c6..986a9a8 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -17,12 +17,19 @@ jobs: - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "Building project..." - run: cmake ${{ gitea.workspace }} + - name: List files in the repository run: | ls ${{ gitea.workspace }} + + - name: Installing Dependencies + run: sudo apt install -y libasound2-dev + - run: cd ${{ gitea.workspace }} - run: make + - name: List files in the repository run: | ls ${{ gitea.workspace }} + - run: echo "This job's status is ${{ job.status }}." \ No newline at end of file