From 1dd6a46fe16d8d87314d6b09b4d420c565d4c96d Mon Sep 17 00:00:00 2001 From: Takuro Ashie Date: Thu, 29 Feb 2024 13:13:48 +0900 Subject: [PATCH] CI: Remove needless continue-on-error Sicne we moved test on Ruby head to a separated workflow, so we don't need contoinue-on-error anymore. Signed-off-by: Takuro Ashie --- .github/workflows/linux-ruby-head.yml | 2 -- .github/workflows/linux.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/linux-ruby-head.yml b/.github/workflows/linux-ruby-head.yml index 90e310a..14dc982 100644 --- a/.github/workflows/linux-ruby-head.yml +++ b/.github/workflows/linux-ruby-head.yml @@ -7,7 +7,6 @@ on: jobs: build: runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: @@ -15,7 +14,6 @@ jobs: postgres: [ '16', '15', '14', '13', '12' ] os: - ubuntu-latest - experimental: [true] services: postgres: image: postgres:${{ matrix.postgres }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9b07463..96a6ff5 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -8,7 +8,6 @@ on: jobs: build: runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: @@ -16,7 +15,6 @@ jobs: postgres: [ '16', '15', '14', '13', '12' ] os: - ubuntu-latest - experimental: [false] services: postgres: image: postgres:${{ matrix.postgres }}