From 013f1da5617a97896121e5c7f90aaf1763efd7d3 Mon Sep 17 00:00:00 2001 From: Takuro Ashie Date: Wed, 26 Jan 2022 10:58:15 +0900 Subject: [PATCH] CI: Update Ruby Signed-off-by: Takuro Ashie --- .github/workflows/linux.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index e97a9b3..dc59551 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -1,14 +1,16 @@ name: linux on: - - push - - pull_request + push: + branches: [master] + pull_request: + branches: [master] jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - ruby: [ '2.4', '2.5', '2.6', '2.7' ] + ruby: [ '3.1', '3.0', '2.7', '2.6' ] os: - ubuntu-latest name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}