From f3178e51c015bb7ee31485a0f7073543245338b4 Mon Sep 17 00:00:00 2001 From: Patrick-SCH03 Date: Sat, 29 Aug 2026 10:59:49 +0900 Subject: [PATCH] ci: remove redundant smoke test workflow The smoke workflow only verifies that feast.cli imports, which the unit-tests workflow already covers with the same trigger and paths-ignore. Part of #6502. Signed-off-by: Patrick-SCH03 --- .github/workflows/smoke_tests.yml | 42 ------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/smoke_tests.yml diff --git a/.github/workflows/smoke_tests.yml b/.github/workflows/smoke_tests.yml deleted file mode 100644 index 2a2c6615155..00000000000 --- a/.github/workflows/smoke_tests.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: smoke-tests - -on: - pull_request: - paths-ignore: - - 'docs/**' - - 'community/**' - - 'examples/**' - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - smoke-test-python: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - python-version: ["3.11"] - os: [ ubuntu-latest ] - env: - OS: ${{ matrix.os }} - PYTHON: ${{ matrix.python-version }} - steps: - - uses: actions/checkout@v4 - - name: Setup Python - id: setup-python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - architecture: x64 - - name: Install the latest version of uv - uses: astral-sh/setup-uv@v5 - with: - enable-cache: true - - name: Install dependencies - run: make install-python-dependencies-ci - - name: Test Imports - run: uv run python -c "from feast.cli import cli" - - name: Minimize uv cache - run: uv cache prune --ci