diff --git a/.gitea/workflows/test_run.yaml b/.gitea/workflows/test_run.yaml index 394c807..71172a6 100644 --- a/.gitea/workflows/test_run.yaml +++ b/.gitea/workflows/test_run.yaml @@ -1,19 +1,24 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +name: Flask Run Test +run-name: Run Flask Server Tests on: [push] jobs: - Explore-Gitea-Actions: + Flask-Run-Test: runs-on: ubuntu-latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - - name: Check out repository code + - name: Checkout repository code 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 + - name: Install dependencies + run: pip install -r requirements.txt + - name: Run Flask Server and Health Check run: | - ls ${{ gitea.workspace }} + python3 app.py & + SERVER_PID=$! + sleep 2 + if ! kill -0 $SERVER_PID 2>/dev/null; then + echo "❌ Flask server failed to start" + exit 1 + fi + echo "✅ Flask server started successfully" + kill $SERVER_PID - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file