From 79f11021ed7cf7f34798ef3bb4a30d15f6854039 Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Fri, 22 Oct 2021 01:17:07 -0400 Subject: [PATCH 1/4] trying out windows --- .github/workflows/tests.yml | 16 +++++++++++++--- CHANGELOG.md | 1 + README.md | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02ffd1f6..db68a1c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,10 +7,20 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu, macos] - ruby: [2.5, 2.6, 2.7, 3.0, head] + os: + - ubuntu-latest + - macos-latest + - windows-latest + ruby: + - 2.7 + - 3.0 + - head + - mingw runs-on: ${{ matrix.os }}-latest - continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || (matrix.ruby == '3.0' && matrix.os == 'macos')}} + continue-on-error: | + ${{ endsWith(matrix.ruby, 'head') + || (matrix.ruby == '3.0' && matrix.os == 'macos')}} + || (matrix.ruby == 'mingw')}} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bd6de1f..4d5de2ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ Features: Compatibility: * Because of `, the new default behavior is to warn instead of errors on a missing file +* Squib's official support for Ruby 2.5, 2.6 support is dropped. ## v0.17.1 / 2021-09-07 diff --git a/README.md b/README.md index 25545e20..c6eebe8d 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Wanna see more? Check out the website: http://andymeneely.github.io/squib/ ## Installation -Squib requires Ruby 2.5 or later. +Squib requires Ruby 2.7 or later. Install it yourself with: From e4a090a14e20f1176232f8b2af445e5ad43f49dd Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Fri, 22 Oct 2021 01:19:14 -0400 Subject: [PATCH 2/4] fix config --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index db68a1c4..6a0f9f2a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }}-latest continue-on-error: | ${{ endsWith(matrix.ruby, 'head') - || (matrix.ruby == '3.0' && matrix.os == 'macos')}} + || (matrix.ruby == '3.0' && matrix.os == 'macos') || (matrix.ruby == 'mingw')}} steps: - uses: actions/checkout@v2 From 84fdb081c64fe5bb699d90b723a16a09b6c62189 Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Fri, 22 Oct 2021 01:22:26 -0400 Subject: [PATCH 3/4] Fix config --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6a0f9f2a..f14d7dd6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,8 @@ jobs: continue-on-error: | ${{ endsWith(matrix.ruby, 'head') || (matrix.ruby == '3.0' && matrix.os == 'macos') - || (matrix.ruby == 'mingw')}} + || (matrix.ruby == 'mingw') + }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 From 98364b67a82480086e019f9a8aae4043e72ab1bb Mon Sep 17 00:00:00 2001 From: Andy Meneely Date: Fri, 22 Oct 2021 01:24:18 -0400 Subject: [PATCH 4/4] More config fix --- .github/workflows/tests.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f14d7dd6..f2aa91e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,11 +17,7 @@ jobs: - head - mingw runs-on: ${{ matrix.os }}-latest - continue-on-error: | - ${{ endsWith(matrix.ruby, 'head') - || (matrix.ruby == '3.0' && matrix.os == 'macos') - || (matrix.ruby == 'mingw') - }} + continue-on-error: ${{ endsWith(matrix.ruby, 'head') || (matrix.ruby == '3.0' && matrix.os == 'macos') || (matrix.ruby == 'mingw') }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1