From 643f859b31c7fae92f44290e5c56e7f0f6793121 Mon Sep 17 00:00:00 2001 From: UTSAV SINGHAL <119779889+UTSAVS26@users.noreply.github.com> Date: Sat, 4 Jan 2025 13:53:40 +0530 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 39 ------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index b5703e2..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: "build" - -on: - pull_request: - schedule: - - cron: "0 0 * * *" # Run everyday - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: 3.13 - allow-prereleases: true - - uses: actions/cache@v4 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - python -m pip install pytest-cov -r requirements.txt - - name: Run tests - # TODO: #8818 Re-enable quantum tests - run: pytest - --ignore=computer_vision/cnn_classification.py - --ignore=docs/conf.py - --ignore=dynamic_programming/k_means_clustering_tensorflow.py - --ignore=machine_learning/lstm/lstm_prediction.py - --ignore=neural_network/input_data.py - --ignore=project_euler/ - --ignore=quantum/q_fourier_transform.py - --ignore=scripts/validate_solutions.py - --cov-report=term-missing:skip-covered - --cov=. . - - if: ${{ success() }} - run: scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md