Skip to content

Allow Nodes::Nodes to hold arbitrary values #174

Allow Nodes::Nodes to hold arbitrary values

Allow Nodes::Nodes to hold arbitrary values #174

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.6
bundler-cache: true
- name: Run rbs + steep
run: bundle exec rake steep
- name: Run reek
run: bundle exec rake reek
- name: Run rubocop
run: bundle exec rake rubocop
- name: Run yardoc
run: bundle exec rake yard | grep '100.00% documented'
spec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- 3.3.6
- 3.3.5
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.6
- 3.2.5
- 3.2.4
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
steps:
- uses: actions/checkout@v3
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rspec
run: bundle exec rake spec
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.6
bundler-cache: true
- name: Report rspec test coverage to coveralls.io
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: bundle exec rake spec
- name: Report rspec test coverage to codeclimate.com
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: bundle exec rake spec