From da10169bddedb346159d090298ff8a0acdaf1ac1 Mon Sep 17 00:00:00 2001
From: mulhern <amulhern@redhat.com>
Date: Fri, 6 Dec 2024 13:25:28 -0500
Subject: [PATCH] Remove weekly tests

Signed-off-by: mulhern <amulhern@redhat.com>
---
 .github/workflows/weekly.yml | 51 ------------------------------------
 1 file changed, 51 deletions(-)
 delete mode 100644 .github/workflows/weekly.yml

diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
deleted file mode 100644
index c7a01baba..000000000
--- a/.github/workflows/weekly.yml
+++ /dev/null
@@ -1,51 +0,0 @@
----
-name: stratis-cli weekly
-
-# yamllint disable-line rule:truthy
-on:
-  schedule:
-    - cron: 25 3 * * 4
-  # Allows you to run this workflow manually from the Actions tab
-  workflow_dispatch:
-
-jobs:
-  next-fedora-python-checks:
-    continue-on-error: true
-    strategy:
-      matrix:
-        include:
-          # PYTHON CHECKS ON NEXT FEDORA PYTHON AND PYTHON TOOLS VERSION
-          - dependencies: >
-              bandit
-              pylint
-              python3-dateutil
-              python3-dbus-client-gen
-              python3-dbus-python-client-gen
-              python3-justbytes
-              python3-packaging
-              python3-psutil
-              python3-wcwidth
-            task: >
-              PATH=${PATH}:/github/home/.local/bin PYTHONPATH=./src
-              make -f Makefile lint
-          - dependencies: black python3-isort
-            task: make -f Makefile fmt-ci
-          - dependencies: shfmt
-            task: make -f Makefile fmt-shell-ci
-          - dependencies: yamllint
-            task: make -f Makefile yamllint
-    runs-on: ubuntu-latest
-    container: fedora:41  # NEXT DEVELOPMENT ENVIRONMENT
-    steps:
-      - uses: actions/checkout@v4
-      - name: Install dependencies
-        run: >
-          dnf install -y
-          make
-          pip
-          python-unversioned-command
-          ${{ matrix.dependencies }}
-      - name: Install pyright
-        run: pip install --user pyright
-      - name: ${{ matrix.task }}
-        run: ${{ matrix.task }}