Skip to content

Added GitHub Action #18

Added GitHub Action

Added GitHub Action #18

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{github.head_ref}}
- name: Ruby Setup
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Git
run: |
git config --global init.defaultBranch main
- name: Build
run: bundle exec rake