summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbinoam P. Marques Jr <abinoam@gmail.com>2022-12-31 13:21:05 -0300
committerAbinoam P. Marques Jr <abinoam@gmail.com>2022-12-31 17:00:06 -0300
commit126a41dfe5595b756b3e28301d2c312ba2c8dd36 (patch)
tree2f60f2021cfb8a678b284c286ae8d05c3a4fff52
parent57f04a0f645431e58145fee26b69214a46d451f9 (diff)
downloadhighline-126a41dfe5595b756b3e28301d2c312ba2c8dd36.tar.gz
Runs GH Actions from an OS matrix
So we include Mac and Windows to it.
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3fcf9f5..9eab7ae 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,11 +4,10 @@ on: [push, pull_request]
jobs:
test:
- runs-on: ubuntu-latest
-
strategy:
fail-fast: false
matrix:
+ os: [ubuntu-latest]
ruby-version:
- head
- '3.2'
@@ -24,6 +23,7 @@ jobs:
- truffleruby
- truffleruby-head
- truffleruby+graalvm
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}