Skip to main content

.github: remove some now-unused GitHub Actions config

ID
45a0d2d
date
2026-05-17 14:26:46+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
3caada8
message
.github: remove some now-unused GitHub Actions config
changed files
2 files, 92 deletions

Changed files

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

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 68d4463..0000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,14 +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"

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

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 247b1a9..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,78 +0,0 @@
-name: Test
-
-on:
-  push:
-    branches:
-    - main
-
-  pull_request:
-    branches:
-    - main
-
-jobs:
-  test:
-    runs-on: macos-latest
-    strategy:
-      matrix:
-        python-version: ["3.13", "3.14"]
-
-    steps:
-    - uses: actions/checkout@v6
-
-    - name: Set up Python
-      uses: actions/setup-python@v6
-      with:
-        python-version: ${{ matrix.python-version }}
-        cache: pip
-
-    - name: Install Python dependencies
-      run: pip install -r dev_requirements.txt
-
-    - name: Install create_thumbnail
-      env:
-        GH_TOKEN: ${{ github.token }}
-      run: |
-        gh release download \
-          --repo alexwlchan/create_thumbnail \
-          --pattern create_thumbnail-aarch64-apple-darwin.tar.gz \
-          --output create_thumbnail.tar.gz
-        tar -xzf create_thumbnail.tar.gz --directory /usr/local/bin
-        chmod +x /usr/local/bin/create_thumbnail
-        which create_thumbnail
-
-    - name: Install dominant_colours
-      env:
-        GH_TOKEN: ${{ github.token }}
-      run: |
-        gh release download \
-          --repo alexwlchan/dominant_colours \
-          --pattern dominant_colours-aarch64-apple-darwin.tar.gz \
-          --output dominant_colours.tar.gz
-        tar -xzf dominant_colours.tar.gz --directory /usr/local/bin
-        chmod +x /usr/local/bin/dominant_colours
-        which dominant_colours
-
-    - name: Install get_live_text
-      env:
-        GH_TOKEN: ${{ github.token }}
-      run: |
-        gh release download \
-          --repo alexwlchan/get_live_text \
-          --pattern get_live_text.aarch64-apple-darwin.zip \
-          --output get_live_text.tar.gz
-        tar -xzf get_live_text.tar.gz --directory /usr/local/bin
-        chmod +x /usr/local/bin/get_live_text
-        which get_live_text
-
-    - name: Install ffprobe
-      run: |
-        curl --location -O https://evermeet.cx/ffmpeg/ffprobe-8.0.1.7z
-        tar -xzf ffprobe-8.0.1.7z --directory /usr/local/bin
-        chmod +x /usr/local/bin/ffprobe
-        which ffprobe
-
-    - name: Install WebKit
-      run: playwright install webkit
-
-    - name: Run tests
-      run: bash scripts/run_chives_tests.sh