Skip to content

Add net-smtp for Ruby 3.1 or higher #12

Add net-smtp for Ruby 3.1 or higher

Add net-smtp for Ruby 3.1 or higher #12

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: ${{ matrix.ruby-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
steps:
- uses: actions/checkout@v2
- name: Set up Groonga APT repository
run: |
sudo -H add-apt-repository -y ppa:groonga/ppa
sudo -H apt update
sudo -H apt install -y -V groonga-bin
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies to build gems
run: |
bundle install
- name: Test
run: |
bundle exec test/run-test.rb