.github: remove some now unused GitHub Actions config
- ID
174bfbd- date
2026-04-20 04:38:49+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
27493f4- message
.github: remove some now unused GitHub Actions config- changed files
2 files, 55 deletions
Changed files
.github/dependabot.yml (361) → .github/dependabot.yml (0)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 8c99705..0000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-version: 2
-updates:
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "weekly"
- day: "monday"
- time: "09:00"
- - package-ecosystem: "pip"
- directory: "/"
- schedule:
- interval: "weekly"
- day: "monday"
- time: "09:00"
- ignore:
- - dependency-name: "mypy"
- - dependency-name: "ruff"
.github/workflows/test.yml (641) → .github/workflows/test.yml (0)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 130935b..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-name: Test
-
-on:
- push:
- branches:
- - main
-
- pull_request:
- branches:
- - main
-
-jobs:
- test:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v6
-
- - name: Set up Python
- uses: actions/setup-python@v6
- with:
- python-version: 3.12
- cache: pip
- cache-dependency-path: dev_requirements.txt
-
- - name: Install dependencies
- run: pip install -r dev_requirements.txt
-
- - name: Run linting
- run: |
- ruff check *.py
- ruff format --check .
-
- - name: Check types
- run: mypy *.py
-
- - name: Build the workflow
- run: python3 create_snippets.py