diff --git a/.github/workflows/basic_tests.yml b/.github/workflows/basic_tests.yml index 1fc20a148..6d9ddce3a 100644 --- a/.github/workflows/basic_tests.yml +++ b/.github/workflows/basic_tests.yml @@ -34,43 +34,6 @@ env: ENV: 'dev' jobs: - - lint: - name: Run Linting - runs-on: ubuntu-22.04 - steps: - - name: Check out repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Cognee Setup - uses: ./.github/actions/cognee_setup - with: - python-version: ${{ inputs.python-version }} - - - name: Run Linting - uses: astral-sh/ruff-action@v2 - - format-check: - name: Run Formatting Check - runs-on: ubuntu-22.04 - steps: - - name: Check out repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Cognee Setup - uses: ./.github/actions/cognee_setup - with: - python-version: ${{ inputs.python-version }} - - - name: Run Formatting Check - uses: astral-sh/ruff-action@v2 - with: - args: "format --check" - unit-tests: name: Run Unit Tests runs-on: ubuntu-22.04