Skip to content

Commit 18c8f87

Browse files
committed
Do not fail on puppet 7 / Ruby 2.7
1 parent a745407 commit 18c8f87

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,12 @@ jobs:
9393
strategy:
9494
fail-fast: false
9595
matrix:
96-
ruby-version: ["2.5", "2.6", "2.7", "3.0"]
96+
ruby-version: ["2.5", "2.6"]
97+
experimental: [false]
98+
include:
99+
- { ruby-version: "2.7", experimental: true }
100+
- { ruby-version: "3.0", experimental: true }
101+
continue-on-error: ${{ matrix.experimental }}
97102
steps:
98103
- name: Checkout code
99104
uses: actions/checkout@v1

0 commit comments

Comments
 (0)