Skip to content

Merge pull request #7 from JuzerShakir/update-inheritance #25

Merge pull request #7 from JuzerShakir/update-inheritance

Merge pull request #7 from JuzerShakir/update-inheritance #25

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2.2"
- name: Install dependencies
run: bundle install
- name: Run analysis
run: rake analysis
- name: Run tests
run: bundle exec rake test