From 4e5414f8ed33f0df1884b4fb39b4a101cea03ef1 Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Thu, 29 Oct 2020 19:41:41 -0700 Subject: [PATCH] try to add the new raspberry pi into the mix --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b328b8..d9689b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,12 +4,15 @@ on: [push] jobs: perl-job: - runs-on: [self-hosted] + runs-on: [self-hosted, ${{ matrix.architecture }}] container: image: perl:${{ matrix.perl-version }} strategy: fail-fast: false matrix: + architecture: + - X64 + - ARM perl-version: - '5.32' - 'latest'