summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-12-30 18:04:22 -0600
committerChristian Cleberg <[email protected]>2025-12-30 18:04:22 -0600
commite2da984e01e2423cd54502fa922c301918de0730 (patch)
treea18b9fd2d07274cdfa01b4eb50edc1ce029c50c6
parent5032dd4aff82f1deceae11269f8973e89945b893 (diff)
downloadcrumb-e2da984e01e2423cd54502fa922c301918de0730.tar.gz
crumb-e2da984e01e2423cd54502fa922c301918de0730.tar.bz2
crumb-e2da984e01e2423cd54502fa922c301918de0730.zip
remove github artifacts
-rw-r--r--.github/FUNDING.yml1
-rw-r--r--.github/workflows/ruff.yml40
-rw-r--r--.github/workflows/tests.yml26
-rw-r--r--CODEOWNERS1
4 files changed, 0 insertions, 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/[email protected]
- - 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