Skip to content

Do not pollute the architecture neutral directory #24

Do not pollute the architecture neutral directory

Do not pollute the architecture neutral directory #24

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: test (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: [ '3.0', 2.7, 2.6, 2.5, 2.4, head ]
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install packages
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt update -qy
sudo apt install libgdbm6 libgdbm-dev
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: rake compile test