Skip to content

Commit

Permalink
ci: Organize workflows at workflows folder
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Apr 30, 2024
1 parent b1a79e0 commit 1720536
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
jobs:
# Runs depending on the result from the check-repo-files.yml
call-check-repo-files:
uses: ./.github/workflows/argilla/check-repo-files.yml
uses: ./.github/workflows/argilla_check-repo-files.yml

end2end-examples:
name: end2end notebook examples, FeedbackDataset for text-classification
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Close Pull Request
name: Teardown all the PR environments

on:
schedule:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
check_repo_files:
name: Check source changes
if: ${{ !github.event.pull_request.draft }}
uses: ./.github/workflows/argilla/check-repo-files.yml
uses: ./.github/workflows/argilla_check-repo-files.yml

deployable_check:
name: Check if must build & deploy from environment
Expand All @@ -52,7 +52,7 @@ jobs:
run_unit_tests:
name: Run unit tests
uses: ./.github/workflows/argilla/run-python-tests.yml
uses: ./.github/workflows/argilla_run-python-tests.yml
needs: check_repo_files
if: needs.check_repo_files.outputs.pythonChanges == 'true'
with:
Expand All @@ -71,7 +71,7 @@ jobs:
runsOn: extended-runner

name: Run end2end tests
uses: ./.github/workflows/argilla/end2end-examples.yml
uses: ./.github/workflows/argilla_end2end-examples.yml
needs: check_repo_files
if: needs.check_repo_files.outputs.end2endChanges == 'true'
with:
Expand All @@ -82,7 +82,7 @@ jobs:

run_integration_tests:
name: Run integration tests
uses: ./.github/workflows/argilla/run-python-tests.yml
uses: ./.github/workflows/argilla_run-python-tests.yml
needs:
- check_repo_files
- run_unit_tests
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
build_python_package:
name: Build Argilla python package
uses: ./.github/workflows/argilla/build-python-package.yml
uses: ./.github/workflows/argilla_build-python-package.yml
needs:
- run_unit_tests
- run_integration_tests
Expand All @@ -148,7 +148,7 @@ jobs:

build_quickstart_for_develop_docker_image:
name: Build Quickstart For Develop docker image
uses: ./.github/workflows/argilla/build-push-dev-frontend-docker.yml
uses: ./.github/workflows/argilla_build-push-dev-frontend-docker.yml
needs: deployable_check
if: needs.deployable_check.outputs.isDeployable == 'true'
with:
Expand All @@ -161,7 +161,7 @@ jobs:

deploy_environment:
name: Deploy branch environment
uses: ./.github/workflows/argilla/deploy-environment.yml
uses: ./.github/workflows/argilla_deploy-environment.yml
needs: build_quickstart_for_develop_docker_image
if: |
!cancelled() &&
Expand Down

0 comments on commit 1720536

Please sign in to comment.