From 2238a286d46d570023beb09367c6cd4b5ea392b9 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Sat, 1 Nov 2025 18:35:07 +0100 Subject: [PATCH] fix: cexclude linting and deployment for now --- .gitea/workflows/ci.yml | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3b749eb..20019e5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,9 +28,9 @@ jobs: run: | python -m pytest tests/ -v - - name: Run linting - run: | - python -m flake8 web/ tests/ --max-line-length=120 + # - name: Run linting + # run: | + # python -m flake8 web/ tests/ --max-line-length=120 - name: Build Docker image run: | @@ -40,17 +40,16 @@ jobs: run: | docker run --rm jobs-app python -m pytest tests/ -v - deploy: - runs-on: ubuntu-latest - needs: test - if: github.ref == 'refs/heads/main' + # deploy: + # runs-on: ubuntu-latest + # needs: test + # if: github.ref == 'refs/heads/main' - steps: - - name: Checkout code - uses: actions/checkout@v4 + # steps: + # - name: Checkout code + # uses: actions/checkout@v4 - - name: Deploy to production - run: | - echo "Deploying to production..." - # Add your deployment commands here - # For example: docker-compose up -d + # - name: Deploy to production + # run: | + # echo "Deploying to production..." + # docker-compose up -d