diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 05990d9..c831530 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,29 +8,5 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Debug - run: | - echo "Starting CI..." - whoami - pwd - ls -la - - name: Check OS - run: | - cat /etc/os-release || echo "Not available" - - name: Install Python - run: | - apt-get update -qq - apt-get install -y -qq python3 python3-pip - python3 --version - - name: Install deps - run: | - pip3 install -e ".[dev]" --quiet - - name: Lint - run: | - ruff check src/ - - name: Type check - run: | - mypy src/ - - name: Test - run: | - pytest tests/ -v \ No newline at end of file + - name: Hello + run: echo "Hello World" \ No newline at end of file