Skip to content

Replace TravisCI to Github Actions #4

Replace TravisCI to Github Actions

Replace TravisCI to Github Actions #4

Workflow file for this run

name: Linter
on:
pull_request:
branches: ["master", "main"]
push:
branches: ["master", "main"]
jobs:
linter:
runs-on: ubuntu-latest
name: linter/ruby
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true
- name: Run linter
run: bundle exec rake code_analysis