Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Merge branch 'main' of github.com:takkii/zinbeijett #137

Merge branch 'main' of github.com:takkii/zinbeijett

Merge branch 'main' of github.com:takkii/zinbeijett #137

Workflow file for this run

name: Ruby CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0.5', '3.1.3']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
- name: Coverage Report by octocov (in this pull request)
uses: k1LoW/octocov-action@v0