From 3cba1693d665f8f87beb78f2b99c668d4de16ac2 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 9 Oct 2023 13:16:35 +0200 Subject: [PATCH 1/2] CI: Add Windows to test matrix This helps learn whether stuff can install. --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e68a23ee..decdce78 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,9 +8,12 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ${{matrix.os}}-latest strategy: matrix: + os: + - ubuntu + - windows ruby-version: - 3.2 - 3.1 From e00564bc3859ca655cb140de16aef81be6ea102b Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 9 Oct 2023 13:30:20 +0200 Subject: [PATCH 2/2] Experiment: add ffi gem to support windows --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index daad1030..82339dc3 100644 --- a/Gemfile +++ b/Gemfile @@ -6,6 +6,8 @@ ruby RUBY_VERSION gemspec +gem "ffi" + group :development, :test do gem "bundler" gem "overcommit", ">= 0.60"