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

remove github artifacts
 .github/FUNDING.yml         |  1 -
 .github/workflows/ruff.yml  | 40 ----------------------------------------
 .github/workflows/tests.yml | 26 --------------------------
 CODEOWNERS                  |  1 -
 4 files changed, 68 deletions(-)

diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
deleted file mode 100644
index 4b822e5..0000000
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1 +0,0 @@
-github: [ccleberg]
diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml
deleted file mode 100644
index 94b7b63..0000000
--- a/.github/workflows/ruff.yml
+++ /dev/null
@@ -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
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
deleted file mode 100644
index b933244..0000000
--- a/.github/workflows/tests.yml
+++ /dev/null
@@ -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
diff --git a/CODEOWNERS b/CODEOWNERS
deleted file mode 100644
index e6cf10d..0000000
--- a/CODEOWNERS
+++ /dev/null
@@ -1 +0,0 @@
-*	@ccleberg