From 03ac2c50dacf4726c3a6aa89c524a234bd4012bf Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 11:50:58 +0200 Subject: [PATCH] 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