Skip to content

maskingSession

maskingSession #347

Workflow file for this run

name: UnitTest
on:
push:
branches: [ unitTests ]
pull_request:
branches: [ master ]
jobs:
build:
name: UnitTest
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '2.6' ,'2.7', '3.0' ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Dependencies Installation
run: |
bundle install --without development
- name: Run Tests
run: |
ruby --version
bundle exec rake
rm Gemfile.lock