Skip to content

Migrate from Travis CI to GitHub Actions with danger-pr-comment workflow. #10

Migrate from Travis CI to GitHub Actions with danger-pr-comment workflow.

Migrate from Travis CI to GitHub Actions with danger-pr-comment workflow. #10

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.4']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec