From a074df6711c99fc06fbe3d71305dd56d0927d42c Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Wed, 20 Dec 2023 10:21:05 -0700 Subject: [PATCH] Added GitHub Action --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..f25e4c8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: Continuous Integration + +on: [push, pull_request] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - 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