Skip to content

Add "robots" to signal who is allowed to use the nodeinfo any future. #42

Add "robots" to signal who is allowed to use the nodeinfo any future.

Add "robots" to signal who is allowed to use the nodeinfo any future. #42

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: tests
steps:
- uses: actions/checkout@v2
- id: version
run: "echo ::set-output name=RUBY_VERSION::$(cat .ruby-version)"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ steps.version.outputs.RUBY_VERSION }}
- name: Cache bundle
uses: actions/cache@v2
with:
path: tests/vendor/bundle
key: ${{ runner.os }}-${{ hashFiles('tests/Gemfile.lock') }}
- name: Bundle
run: |
bundle config set deployment true
bundle
- name: Run tests
run: bundle exec rake