Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Wait for the argilla-quickstart to start #20

Closed
wants to merge 4 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ jobs:
run:
shell: bash -l {0}
steps:
- name: Wait for argilla-quickstart to start
run: |
while ! curl http://localhost:6900/api/_status; do sleep 1; done
frascuchon marked this conversation as resolved.
Show resolved Hide resolved
- name: Curl
run: curl http://127.0.0.1:6900/api/docs
run: curl -XGET http://localhost:6900/api/docs
frascuchon marked this conversation as resolved.
Show resolved Hide resolved
# - name: Checkout Code 🛎
# uses: actions/checkout@v3
# - name: Setup Conda Env 🐍
Expand Down
Loading