From adade1dfb8de8129eb2ebcb64117d8a652f66f3d Mon Sep 17 00:00:00 2001 From: Tony Schneider Date: Wed, 9 Aug 2023 07:23:23 -0400 Subject: [PATCH] initial gha workflow --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 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 00000000..ba5dc41a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Install Ruby! + uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.2.2" + + - name: rake check + run: rake check \ No newline at end of file