From 1b7335ddfb66ce8190a89f65da20688beb4606bf Mon Sep 17 00:00:00 2001 From: Prabhat Ranjan Date: Sun, 5 Apr 2026 22:15:05 +1000 Subject: [PATCH] fix: remove commented-out cli_tests.yml workflow The entire workflow file was commented out, causing GitHub Actions to fail on every push with 'workflow file issue' errors. Remove the file entirely since it serves no purpose when disabled. --- .github/workflows/cli_tests.yml | 58 --------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 .github/workflows/cli_tests.yml diff --git a/.github/workflows/cli_tests.yml b/.github/workflows/cli_tests.yml deleted file mode 100644 index fa4476f4..00000000 --- a/.github/workflows/cli_tests.yml +++ /dev/null @@ -1,58 +0,0 @@ -# name: CLI Tests - -# on: -# pull_request: -# branches: [main, dev] -# paths: -# - 'sensibledb-cli/**' -# - 'sensibledb-macros/**' -# - 'sensibledb-container/**' -# - 'sensibledb-db/**' -# - 'Cargo.toml' -# - 'Cargo.lock' - -# env: -# CARGO_TERM_COLOR: always -# RUST_BACKTRACE: 1 - -# jobs: -# test: -# name: Test (${{ matrix.os }}) -# runs-on: ${{ matrix.os }} -# strategy: -# fail-fast: false -# matrix: -# os: [ubuntu-latest, macos-latest, windows-latest] - -# steps: -# - name: Checkout repository -# uses: actions/checkout@v4 - -# - name: Setup Rust toolchain -# uses: dtolnay/rust-toolchain@stable - -# - name: Cache cargo registry -# uses: actions/cache@v4 -# with: -# path: | -# ~/.cargo/registry -# ~/.cargo/git -# target -# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} -# restore-keys: | -# ${{ runner.os }}-cargo- - -# - name: Run sensibledb-cli unit tests -# run: cargo test --release --package sensibledb-cli -# env: -# # Use a unique temp directory for test isolation -# SENSIBLE_CACHE_DIR: ${{ runner.temp }}/nexus-test-cache-${{ github.run_id }} - -# - name: Run sensibledb-macros tests -# run: cargo test --release --package sensibledb-macros - -# # Integration tests that require repo cloning run serially -# - name: Run sensibledb-cli integration tests (ignored tests) -# run: cargo test --release --package sensibledb-cli -- --ignored --test-threads=1 -# env: -# SENSIBLE_CACHE_DIR: ${{ runner.temp }}/nexus-test-cache-ignored-${{ github.run_id }}