diff --git a/.github/workflows/test-new-pr.yml b/.github/workflows/test-new-pr.yml deleted file mode 100644 index 9890fdd..0000000 --- a/.github/workflows/test-new-pr.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: test-new-pr -on: [pull_request, workflow_dispatch] -jobs: - run-nightly-tests: - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️Ivy Models - uses: actions/checkout@v2 - with: - path: models - persist-credentials: false - fetch-depth: 0 - - - name: Get changed files - id: changed-files - uses: tj-actions/changed-files@v37 - with: - files: | - "ivy_models_tests/**/*.py" - - - name: Run tests if any files in ivy_models_tests changed - if: steps.changed-files.outputs.any_changed == 'true' - run: | - for file in ${{ steps.changed-files.outputs.all_changed_files }}; do - docker run --rm -v `pwd`/models:/models unifyai/models:latest python3 -m pytest $file - done - \ No newline at end of file