Fixed ci/cd pipeline #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Keploy Test Suite | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Keploy CLI | |
| run: | | |
| curl --silent -L https://keploy.io/ent/install.sh | bash | |
| - name: Run Keploy Test Suite | |
| run: | | |
| export KEPLOY_API_KEY=${{ secrets.KEPLOY_API_KEY }} | |
| keploy test-suite --app=4fda4fac-c01f-4e94-a26d-22f71997d39c --base-path https://crud-api-server-python.onrender.com/ --cloud |