From e08da95ad4ea3a451a2c73c1833a9289655acffa Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Tue, 24 Sep 2024 09:00:54 +0100 Subject: [PATCH] ENH: Change the workflow name and update OS Updated the OS to include Ubuntu 22. --- .github/workflows/cloud_chatops.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cloud_chatops.yaml b/.github/workflows/cloud_chatops.yaml index 41276cdd..24989f46 100644 --- a/.github/workflows/cloud_chatops.yaml +++ b/.github/workflows/cloud_chatops.yaml @@ -1,4 +1,4 @@ -name: Cloud Chatops CI/CD +name: Cloud Chatops on: push: @@ -11,9 +11,10 @@ on: jobs: test_and_lint: - runs-on: ubuntu-20.04 + runs-on: ${{ matrix.os }} strategy: matrix: + os: ['ubuntu-20.04','ubuntu-22.04'] python-version: [ "3.12", "3.x" ] steps: - uses: actions/checkout@v4