From 0c346c9902f3ede59dbfc8a88e9704ece7032a3b Mon Sep 17 00:00:00 2001 From: Justin Johnson Date: Wed, 12 Jun 2024 14:19:24 -0400 Subject: [PATCH] Remove centos checks --- .../workflows/verify-on-container-centos.yml | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/verify-on-container-centos.yml diff --git a/.github/workflows/verify-on-container-centos.yml b/.github/workflows/verify-on-container-centos.yml deleted file mode 100644 index ce22c93..0000000 --- a/.github/workflows/verify-on-container-centos.yml +++ /dev/null @@ -1,23 +0,0 @@ -# https://help.github.com/en/articles/workflow-syntax-for-github-actions -name: Docker container (CentOS) - -on: -- push - -jobs: - verify: - name: Verify - strategy: - fail-fast: false - matrix: - os: - - ubuntu-20.04 - - ubuntu-22.04 - docker_image: - - quay.io/centos/centos:stream8 - uses: "./.github/workflows/reusable-verify.yml" - with: - os: ${{ matrix.os }} - docker_image: ${{ matrix.docker_image }} - package_installation_command: yum install -y git openssh-clients - secrets: inherit