Fix compile errors on iOS #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: ruby 3.2 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup gems | |
run: bundle install | |
- name: setup dependencies | |
run: "ruby -I.github/workflows -rutils -e 'setup_dependencies'" | |
- name: test | |
run: bundle exec rake test |