Skip to content

ci: disable test

ci: disable test #7

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"
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies to build gems
run: |
sudo apt update
bundle install
- name: Test
# TODO: No test
if: |
false
run: |
bundle exec ruby test/run-test.rb