From df4e31bad24e4d101f28c7769d6c4a34f316ba92 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sat, 8 Aug 2020 14:08:41 -0400 Subject: [PATCH] Add test CI workflow --- .github/workflows/ci.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..8939488 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,14 @@ +jobs: + build: + runs-on: ubuntu-latest + name: Ruby ${{ matrix.ruby }} sample + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-ruby@v1 + with: + ruby-version: 2.7 + - name: CI Build + run: | + script/bootstrap + script/cibuild +