diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml index 5a8538c..8e242ab 100644 --- a/.gitea/workflows/check.yml +++ b/.gitea/workflows/check.yml @@ -11,14 +11,14 @@ jobs: uses: actions/checkout@v4 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - name: Install cmake package run: sudo apt update -y && sudo apt install cmake -y - name: Cmake prepare part run: mkdir build && cd build && cmake .. + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} - name: Build project - run: make + run: cd build && make - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file