From b6065886a7084312656fe38c958f0c55eb23a32f Mon Sep 17 00:00:00 2001 From: flofriday Date: Sat, 21 Dec 2024 17:53:55 +0100 Subject: [PATCH] Temporary disable test CI --- .github/workflows/CI.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c49d74e..96f2bb1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -5,22 +5,22 @@ name: CI on: [push] jobs: - test: - runs-on: Ubuntu-22.04 - steps: - - name: Checkout code - uses: actions/checkout@v4 + # test: + # runs-on: Ubuntu-22.04 + # steps: + # - name: Checkout code + # uses: actions/checkout@v4 - - name: Set up Python 3.13 - uses: actions/setup-python@v5 - with: - python-version: "3.13" + # - name: Set up Python 3.13 + # uses: actions/setup-python@v5 + # with: + # python-version: "3.13" - - name: Install dependencies - run: python -m pip install -r requirements.txt + # - name: Install dependencies + # run: python -m pip install -r requirements.txt - - name: Test with pytest - run: python -m pytest + # - name: Test with pytest + # run: python -m pytest deploy: needs: test