diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 10379eeb..974c48e3 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -110,20 +110,3 @@ jobs: - name: Deploy to Coolify run: | curl --request GET '${{ secrets.COOLIFY_WEBHOOK }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' - - verify: - name: Verify - needs: deploy - runs-on: ubuntu-24.04 - environment: production - if: github.ref == 'refs/heads/main' - concurrency: deploy-group # optional: ensure only one action runs at a time - steps: - - uses: actions/checkout@v4 - - uses: gacts/install-hurl@v1 - - name: Wait until instance is up - run: hurl --test test/healthcheck.hurl --retry 3 --retry-interval 5000 - - name: Run production tests - run: hurl --test test/prod.hurl - env: - HURL_api_token: ${{ secrets.API_TOKEN }}