Skip to content

Merge pull request #3 from Watson1978/open-uri #9

Merge pull request #3 from Watson1978/open-uri

Merge pull request #3 from Watson1978/open-uri #9

Workflow file for this run

name: Testing on Ubuntu
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 3.2
- 3.3
- 3.4
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: unit testing
run: |
bundle install --jobs 4 --retry 3
bundle exec rake test