Skip to main content

.github: remove the now-unused GitHub Actions config

ID
db77c16
date
2026-05-15 07:32:54+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
0b30c48
message
.github: remove the now-unused GitHub Actions config
changed files
2 files, 64 deletions

Changed files

.github/dependabot.yml (395) → .github/dependabot.yml (0)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 8096251..0000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,18 +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: "pytest"
-      - dependency-name: "ruff"

.github/workflows/test.yml (947) → .github/workflows/test.yml (0)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 8cd99fd..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: Test
-
-on:
-  push:
-    branches:
-    - main
-
-  pull_request:
-    branches:
-    - main
-
-jobs:
-  test:
-    strategy:
-      matrix:
-        python-version:
-          - "3.14"
-
-    runs-on: ubuntu-latest
-
-    steps:
-    - uses: actions/checkout@v6
-
-    - name: Set up Python
-      uses: actions/setup-python@v6
-      with:
-        python-version: ${{ matrix.python-version }}
-        cache: 'pip'
-        cache-dependency-path: 'dev_requirements.txt'
-
-    - name: Install dependencies
-      run: pip install -r dev_requirements.txt
-
-    - name: Check formatting
-      run: |
-        ruff check .
-        ruff format --check .
-
-    - name: Check types
-      run: ty check *.py
-
-    # I don't run tests in GitHub Actions because YouTube blocks yt-dlp
-    # without authentication, and I don't want to sort out passing cookies
-    # in CI for now -- I can run the tests locally, that's good enough.
-    # - name: Run tests
-    #   run: pytest tests