aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/FUNDING.yml15
-rw-r--r--.github/workflows/ruff.yml37
2 files changed, 0 insertions, 52 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
deleted file mode 100644
index 62082dc..0000000
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# These are supported funding model platforms
-
-github: [ccleberg] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
-# patreon: # Replace with a single Patreon username
-# open_collective: # Replace with a single Open Collective username
-# ko_fi: # Replace with a single Ko-fi username
-# tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
-# community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
-# liberapay: # Replace with a single Liberapay username
-# issuehunt: # Replace with a single IssueHunt username
-# lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
-# polar: # Replace with a single Polar username
-# buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
-# thanks_dev: # Replace with a single thanks.dev username
-# custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml
deleted file mode 100644
index 2cefea1..0000000
--- a/.github/workflows/ruff.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-name: Ruff
-
-on:
- push:
- paths:
- - '**.py'
-
-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 pandas plotly
- - 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