From 7a4fd6d9286ba7be2ea66e5823a8307d990b85a3 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 10 Mar 2023 07:29:43 +0900 Subject: Use callable workflow on libyaml jobs --- .github/workflows/libyaml.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/libyaml.yml b/.github/workflows/libyaml.yml index ea25f57..90f768e 100644 --- a/.github/workflows/libyaml.yml +++ b/.github/workflows/libyaml.yml @@ -3,12 +3,19 @@ name: libyaml on: [push, pull_request] jobs: + ruby-versions: + uses: ruby/actions/.github/workflows/ruby_versions.yml@master + with: + engine: cruby + min_version: 2.4 + build: + needs: ruby-versions runs-on: ubuntu-latest strategy: fail-fast: false matrix: - ruby: [ head, 3.1, "3.0", 2.7, 2.6, 2.5, 2.4 ] + ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} libyaml: [0.1.7, 0.2.5] libyaml-prefix: [/tmp/local, ''] -- cgit v1.2.1