Skip to content

Don't link if file exists #121

Don't link if file exists

Don't link if file exists #121

Workflow file for this run

name: Ruby tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.1', '3.2' ]
name: Ruby ${{ matrix.ruby-version }}
steps:
- uses: actions/checkout@master
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Run tests
env:
BATS_APP_ID: ${{ secrets.BATS_APP_ID }}
BATS_INSTALLATION_ID: ${{ secrets.BATS_INSTALLATION_ID }}
BATS_CLIENT_ID: ${{ secrets.BATS_CLIENT_ID }}
BATS_CLIENT_SECRET: ${{ secrets.BATS_CLIENT_SECRET }}
BATS_PRIVATE_KEY: ${{ secrets.BATS_PRIVATE_KEY }}
RUBY_VERSION: ${{ matrix.ruby-version }}
run: |
mkdir $RUBY_VERSION
cd $RUBY_VERSION
gem install webrick
rake -f ../test/Rakefile