Skip to content

Commit

Permalink
Add macOS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jul 9, 2024
1 parent 5f22c35 commit 2ab0191
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}-latest

strategy:
fail-fast: false
matrix:
os: [macos]
ruby: [ '3.2', '3.3' ]

steps:
- name: icu4c
run: brew install icu4c
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}

- name: Install dependencies
run: bundle install
- name: Run tests ${{ matrix.rubyopt }}
run: bundle exec rake RUBYOPT="${{ matrix.rubyopt }}"

0 comments on commit 2ab0191

Please sign in to comment.