From de7c0d1fb1eceb8465fec70cf4c5c72ef43055f9 Mon Sep 17 00:00:00 2001 From: Daniel Carbone Date: Thu, 14 Nov 2024 19:19:41 -0600 Subject: [PATCH] updating matrix versions (#12) * updating matrix versions --- .github/workflows/tests.yaml | 53 +++++++++++++++++++++++++++++++----- 1 file changed, 46 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e24d97c..189d587 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -23,20 +23,58 @@ jobs: strategy: matrix: image: - - "ubuntu-22.04" + - "ubuntu-latest" - "ubuntu-20.04" + - "ubuntu-22.04" + - "ubuntu-24.04" + - "macos-latest" - "macos-13" - - "macos-11" - - "macos-12" - - "windows-2022" + - "macos-14" + - "macos-15" + - "windows-latest" - "windows-2019" + - "windows-2022" force: - 'true' - 'false' version: - - '1.5' - - '1.6' - '1.7' + include: + - image: "ubuntu-latest" + version: '1.6' + - image: "ubuntu-latest" + version: '1.5' + + - image: "ubuntu-20.04" + version: '1.6' + - image: "ubuntu-20.04" + version: '1.5' + + - image: "ubuntu-22.04" + version: '1.6' + - image: "ubuntu-22.04" + version: '1.5' + + - image: "ubuntu-24.04" + version: '1.6' + - image: "ubuntu-24.04" + version: '1.5' + + - image: "windows-latest" + version: '1.6' + - image: "windows-latest" + version: '1.5' + + - image: "windows-2019" + version: '1.6' + - image: "windows-2019" + version: '1.5' + + - image: "windows-2022" + version: '1.6' + - image: "windows-2022" + version: '1.5' + name: "Test Action - (img: ${{ matrix.image }}; version: ${{ matrix.version }}; force: ${{ matrix.force }})" runs-on: ${{ matrix.image }} steps: @@ -173,6 +211,7 @@ jobs: strategy: matrix: image: + - "ubuntu-24.04" - "ubuntu-22.04" - "ubuntu-20.04" force: @@ -185,7 +224,7 @@ jobs: name: "Test Action (Container) - (img: ${{ matrix.image }}; version: ${{ matrix.version }}; force: ${{ matrix.force }})" runs-on: ${{ matrix.image }} container: - image: node:18.12.1 + image: node:20 steps: - uses: actions/checkout@v4