Skip to content

possible fix for #148 #37

possible fix for #148

possible fix for #148 #37

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Building iodine
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby-version: ['2.3', '2.7', '3.0', '3.1', '3.2']
os: [ubuntu-latest, macos-latest] # , windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby # see https://github.com/ruby/setup-ruby#versioning)
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build and Test Iodine
run: |
echo CFLAGS = $CFLAGS
echo cflags = $cflags
echo HOME = $HOME
ruby -e 'puts Gem.default_dir'
bundle exec rake install
# env VERBOSE=1 bundle exec rspec --format documentation
# - name: Run tests
# run: bundle exec rake