Skip to content

remove redundant license #20

remove redundant license

remove redundant license #20

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.2.2'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install Prolog
run: sudo apt-get -y install swi-prolog
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run the tests
run: bundle exec rake