Skip to content

Introduce deploy action #10

Introduce deploy action

Introduce deploy action #10

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run RSpec
run: bundle exec rake spec
- name: Run RuboCop
run: bundle exec rake rubocop