Skip to main content

.github: remove some now-unused GitHub Actions config

ID
99dce42
date
2026-05-17 15:31:50+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
64a0035
message
.github: remove some now-unused GitHub Actions config
changed files
2 files, 58 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/main.yml (824) → .github/workflows/main.yml (0)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 4302ad8..0000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: Run tests
-
-on:
-  push:
-    branches:
-    - main
-
-  pull_request:
-    branches:
-    - main
-
-jobs:
-  test:
-    runs-on: ubuntu-latest
-
-    steps:
-      - name: Check out repository code
-        uses: actions/checkout@v6
-
-      - name: Setup Python
-        uses: actions/setup-python@v6
-        with:
-          python-version: 3.12
-          cache: pip
-          cache-dependency-path: dev_requirements.txt
-
-      - name: Install dependencies
-        run: python3 -m pip install -r dev_requirements.txt
-
-      - name: Check formatting
-        run: |
-          ruff check .
-          ruff format --check .
-
-      - name: Check types
-        run: mypy *.py --strict
-
-      - name: Run test suite
-        run: |
-          coverage run -m pytest test_concurrently.py
-          coverage report --skip-covered --fail-under=100