From 9d44caa4f677aea21df5143feed8f661c0c1b1ad Mon Sep 17 00:00:00 2001 From: Roberto Vera Alvarez Date: Thu, 25 Sep 2025 16:42:11 -0400 Subject: [PATCH] Removing unnecessary CI steps --- .github/workflows/python-package.yml | 35 ---------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/python-package.yml diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml deleted file mode 100644 index 7616c65..0000000 --- a/.github/workflows/python-package.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Python package - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.9, 3.10, 3.11, 3.12] - - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install Poetry - run: pip install poetry - - name: Install dependencies - run: poetry install - - name: Lint with flake8 - run: | - poetry run flake8 src/ --count --select=E9,F63,F7,F82 --show-source --statistics - poetry run flake8 src/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: poetry run pytest