Skip to content

chore(deps): add dependency and `require' "uri" when version 3.3 or l… #4

chore(deps): add dependency and `require' "uri" when version 3.3 or l…

chore(deps): add dependency and `require' "uri" when version 3.3 or l… #4

Workflow file for this run

name: test
on:
workflow_dispatch:
schedule:
- cron: '3 0 2 * *'
push:
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v4
- name: Set up RUby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: lint
run: bundle exec rake standard
- name: test
run: bundle exec rake spec