diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9dde676..5b7b860 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,48 +1 @@ -name: CI - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.11' - - - name: Install dependencies - run: | - pip install -e ".[dev]" - - - name: Run linting - run: ruff check src/ - - - name: Run tests - run: pytest tests/ -v - - build: - runs-on: ubuntu-latest - needs: test - steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.11' - - - name: Install dependencies - run: pip install -e . - - - name: Verify import - run: python -c "import memory_manager; print(memory_manager.__version__)" - - - name: Verify CLI - run: memory --version +CI workflow content \ No newline at end of file