From 0d796a31f041481088895ad43d6d34910016ffa7 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Wed, 20 Dec 2023 16:42:38 -0700 Subject: [PATCH] Added GitHub Action --- .github/workflows/ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..e309874 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,29 @@ +name: Continuous Integration + +on: [push, pull_request] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: '0' + ref: ${{github.head_ref}} + + - name: Ruby Setup + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Build + run: bundle exec rake + + - name: SimpleCov Report + uses: actions/upload-artifact@v3 + with: + name: coverage + path: coverage