refactor(graphql-hive.rb): clean up file, move config to class #312
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
standard: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Changelog Enforcer | |
uses: dangoslen/[email protected] | |
- name: Standard Ruby | |
uses: standardrb/standard-ruby-action@v1 | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@2a9a743e19810b9f3c38060637daf594dbd7b37f | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- run: bundle exec rake spec |