Skip to content

Added racc into test dependency #27

Added racc into test dependency

Added racc into test dependency #27

Workflow file for this run

name: ubuntu
on: [push, pull_request]
jobs:
build:
name: build (${{ matrix.ruby }}/${{ matrix.test_mode }})
strategy:
matrix:
ruby: [ '3.3', '3.2', '3.1', '3.0' ]
test_mode: [ rack, gem ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: niden/actions-memcached@v7
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get -y install libidn11-dev
echo 'gemspec' > Gemfile.local
gem update bundler --no-document
bundle install --without server --jobs=3 --retry=3
- name: Run test
run: bundle exec rake spec
env:
TEST_MODE: ${{ matrix.test_mode }}