From 8be82e0c649dbf69f04e6225d6153f752ad28c03 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Thu, 23 Nov 2023 09:18:23 -0700 Subject: [PATCH] remove cos_integration --- .github/workflows/cos_integration.yml | 42 --------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/cos_integration.yml diff --git a/.github/workflows/cos_integration.yml b/.github/workflows/cos_integration.yml deleted file mode 100644 index 3bfb587c..00000000 --- a/.github/workflows/cos_integration.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Continuous Integration - -on: - push: - branches: - - master - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.x - - - name: Install dependencies - run: pip install -r requirements.txt - - - name: Run unit tests - run: pytest tests/unit - - - name: Run integration tests - run: pytest tests/integration - - - name: Run code coverage - run: pytest --cov=swarms tests/ - - - name: Run linters - run: pylint swarms - - - name: Build documentation - run: make docs - - - name: Validate documentation - run: sphinx-build -b linkcheck docs build/docs - - - name: Run performance tests - run: find ./tests -name '*.py' -exec pytest {} \; \ No newline at end of file