diff --git a/.github/workflows/pr_request_checks.yml b/.github/workflows/pr_request_checks.yml deleted file mode 100644 index 83b3203d..00000000 --- a/.github/workflows/pr_request_checks.yml +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Pull Request Checks -on: - pull_request: - branches: - - master -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.x - - name: Install dependencies - run: "pip install -r requirements.txt\npip install swarms\npip install pytest \n" - - name: Run tests and checks - run: | - pytest - pylint swarms