Skip to content

Commit 5877198

Browse files
committed
Fixed ci/cd pipeline
1 parent 513eafb commit 5877198

1 file changed

Lines changed: 23 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
1-
name: Install Keploy CLI
2-
run:
3-
curl --silent -L https://keploy.io/ent/install.sh | bash
1+
name: Keploy Test Suite
42

5-
name: Run Keploy Test Suite
6-
run:
7-
export KEPLOY_API_KEY=${{ secrets.KEPLOY_API_KEY }}
8-
keploy test-suite --app=4fda4fac-c01f-4e94-a26d-22f71997d39c --base-path https://crud-api-server-python.onrender.com/ --cloud
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Install Keploy CLI
18+
run: |
19+
curl --silent -L https://keploy.io/ent/install.sh | bash
20+
21+
- name: Run Keploy Test Suite
22+
run: |
23+
export KEPLOY_API_KEY=${{ secrets.KEPLOY_API_KEY }}
24+
keploy test-suite --app=4fda4fac-c01f-4e94-a26d-22f71997d39c --base-path https://crud-api-server-python.onrender.com/ --cloud

0 commit comments

Comments
 (0)