From 1717af9189435389670c70b9ddc60d2974f897f5 Mon Sep 17 00:00:00 2001 From: Lee Katz - Aspen Date: Thu, 3 Aug 2023 14:14:08 -0400 Subject: [PATCH] update cache.yml --- .github/workflows/cache.yml | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 0ff799c..f44f4c0 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -1,10 +1,20 @@ -steps: -- uses: actions/checkout@v3 -- uses: shogo82148/actions-setup-perl@v1 - with: - perl-version: '5.34' - install-modules-with: cpanm - install-modules-args: --with-develop --with-configure -- run: | - echo "hello world!" - # prove -lv t +name: force-cache +on: [push] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: ['ubuntu-22.04'] + perl: [ '5.34' ] + steps: + - uses: actions/checkout@v3 + - uses: shogo82148/actions-setup-perl@v1 + with: + perl-version: '5.34' + install-modules-with: cpanm + install-modules-args: --with-develop --with-configure + - run: | + echo "hello world!" + # prove -lv t