krz/crumb
A local alternative to your browser's history.
clone: git clone https://gitbay.org/krz/crumb.git
e2da984e01e2423cd54502fa922c301918de0730
unsigned
author: Christian Cleberg <hello@cleberg.net> · 2025-12-31T00:04:22Z
.github/FUNDING.yml | 1 - .github/workflows/ruff.yml | 40 ---------------------------------------- .github/workflows/tests.yml | 26 -------------------------- CODEOWNERS | 1 - 4 files changed, 68 deletions(-) deleted file mode 100644 @@ -1 +0,0 @@ -github: [ccleberg] deleted file mode 100644 @@ -1,40 +0,0 @@ -name: Ruff - -on: - push: - paths: - - '**.py' - -permissions: - contents: write - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.x"] - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - ref: ${{ github.event.pull_request.head.ref }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install flask - - name: Install Ruff - uses: astral-sh/ruff-action@v3.2.2 - - name: Ruff Actions - run: | - ruff check --fix - ruff format - - name: Add and Commit - uses: EndBug/add-and-commit@v9 - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - default_author: github_actions - pathspec_error_handling: ignore deleted file mode 100644 @@ -1,26 +0,0 @@ -name: Run Tests - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: "3.11" - - name: Install Dependencies - run: | - python -m pip install --upgrade pip - python -m pip install --upgrade pytest - python -m pip install -r requirements.txt - - name: Run Tests - run: pytest deleted file mode 100644 @@ -1 +0,0 @@ -* @ccleberg