From 03ac2c50dacf4726c3a6aa89c524a234bd4012bf Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 11:50:58 +0200 Subject: [PATCH 1/3] Update GitHub actions for multi distro testing --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee1c271..9dccccd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,10 @@ on: jobs: my_job: name: test WordOps - runs-on: ubuntu-18.04 + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, ubuntu-18.04, ubuntu-20.04] steps: - uses: actions/checkout@v2 From 1836fe66d554fbf940c12ba7c17ff4281b311eec Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 11:56:33 +0200 Subject: [PATCH 2/3] Add Ubuntu 22.04 LTS to GitHub Actions --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9dccccd..5c5dc64 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, ubuntu-18.04, ubuntu-20.04] + os: [ubuntu-latest, ubuntu-18.04, ubuntu-22.04] steps: - uses: actions/checkout@v2 From 62e453c6c7ac797d7d2bbb581f38597905a5aad2 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 12:14:24 +0200 Subject: [PATCH 3/3] Keep only Ubuntu 20.04 & 18.04 for GitHub Actions --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5c5dc64..88477c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, ubuntu-18.04, ubuntu-22.04] + os: [ubuntu-20.04, ubuntu-18.04] steps: - uses: actions/checkout@v2