From a73ce4e91d28a35f7928164771f0c92edf5f1dd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiana=20=F0=9F=9A=80=20=20Campanari?= Date: Sun, 6 Oct 2024 13:38:13 -0300 Subject: [PATCH] Delete .github/workflows/ci-code-quality.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiana 🚀 Campanari --- .github/workflows/ci-code-quality.yml | 59 --------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .github/workflows/ci-code-quality.yml diff --git a/.github/workflows/ci-code-quality.yml b/.github/workflows/ci-code-quality.yml deleted file mode 100644 index a064bc1..0000000 --- a/.github/workflows/ci-code-quality.yml +++ /dev/null @@ -1,59 +0,0 @@ - - -# Continuous Integration (CI) and Code Quality Workflow - -name: CI -on: [push] -jobs: - test: - strategy: - fail-fast: false - matrix: - python-version: [3.12.0] - poetry-version: [1.7.0] - os: [ubuntu-latest] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Run image - uses: abatilo/actions-poetry@v2 - with: - poetry-version: ${{ matrix.poetry-version }} - - name: Install dependencies - run: poetry install - - name: Run tests - run: poetry run pytest - code-quality: - strategy: - fail-fast: false - matrix: - python-version: [3.12.0] - poetry-version: [1.7.0] - os: [ubuntu-latest] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Run image - uses: abatilo/actions-poetry@v2 - with: - poetry-version: ${{ matrix.poetry-version }} - - name: Install dependencies - run: poetry install - - name: Run black - run: poetry run black . --check - - name: Run isort - run: poetry run isort . --check-only --profile black - - name: Run flake8 - run: poetry run flake8 . - - name: Run bandit - run: poetry run bandit . - - name: Run safety - run: poetry run safety check - -