Prevent serializing huge graphs of relationships between users and co… #95
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: [push] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| ruby: | |
| - 3.0 | |
| - 3.1 | |
| - 3.2 | |
| - 3.3 | |
| - 3.4 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: RSpec | |
| run: bundle exec rake |