From b56e8cc92e7d1672d1c1db9ddcd5d09d30f2cb78 Mon Sep 17 00:00:00 2001 From: hugsy Date: Wed, 25 Aug 2021 16:44:20 -0700 Subject: [PATCH] [ci] added ubuntu-18.04 to the list of CI targets (duh) --- .github/workflows/run-tests.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7189375ec..f839370d9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,13 +13,15 @@ on: jobs: build: - name: "Run Unit tests" - runs-on: [ubuntu-20.04, ubuntu-18.04] + strategy: + fail-fast: false + matrix: + os: ['ubuntu-20.04', 'ubuntu-18.04'] + name: "Run Unit tests on ${{ matrix.os }}" + runs-on: ${{ matrix.os }} defaults: run: shell: bash - strategy: - fail-fast: false steps: - uses: actions/checkout@v2