Skip to content

fix: allow subjects + entities to be specified in any order #91

fix: allow subjects + entities to be specified in any order

fix: allow subjects + entities to be specified in any order #91

Workflow file for this run

name: 'CI'
on:
push:
branches: [ master ]
pull_request: ~
schedule:
- cron: "0 16 * * 1"
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
rubyversion: ['2.7', '3.0', '3.1']
steps:
- uses: actions/checkout@v3
- name: set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.rubyversion }}
rubygems: "3.0.0"
bundler-cache: true
- name: Install Dependencies
run: make install
- name: run tests
run: make test