From af5d69587a22152c8eda92188154ebcd37b878c8 Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 23 Dec 2024 11:09:35 -0500 Subject: [PATCH] Remove GitHub Workflows weekly.yml file The utility is almost none and it requires some upkeep. Signed-off-by: mulhern --- .github/workflows/weekly.yml | 31 ------------------------------- 1 file changed, 31 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 098b60f..0000000 --- a/.github/workflows/weekly.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: justbytes weekly - -# yamllint disable-line rule:truthy -on: - schedule: - - cron: 20 3 * * 3 - workflow_dispatch: - -jobs: - next-fedora-python-checks: - strategy: - matrix: - include: - - dependencies: black python3-isort - task: make -f Makefile fmt-travis - - dependencies: yamllint - task: make -f Makefile yamllint - - dependencies: pylint python3-hypothesis python3-justbases - task: PYTHONPATH=./src make -f Makefile lint - runs-on: ubuntu-latest - container: fedora:41 # NEXT DEVELOPMENT ENVIRONMENT - steps: - - uses: actions/checkout@v4 - - name: Install dependencies - run: > - dnf install -y - make - ${{ matrix.dependencies }} - - name: ${{ matrix.task }} - run: ${{ matrix.task }}