From e25530e1e4b8085b0362b118b93835a9c7af6ef4 Mon Sep 17 00:00:00 2001 From: Akira KAWAGUCHI Date: Mon, 17 Jun 2024 18:12:51 +0900 Subject: [PATCH] ci: introduce build matrix to Tsubakuro-CI --- .github/workflows/ci-build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 6c66f2ca..3364f023 100755 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -4,7 +4,11 @@ on: [push, pull_request, workflow_dispatch] jobs: Build: - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + os: [ubuntu-22.04, ubuntu-24.04] + runs-on: ${{ matrix.os }} permissions: checks: write timeout-minutes: 30