From 20f7fc192f06731dfa4ca9f00be56f19952de6d5 Mon Sep 17 00:00:00 2001 From: Parker Moore <237985+parkr@users.noreply.github.com> Date: Sat, 8 Aug 2020 14:45:43 -0400 Subject: [PATCH] Create .github/workflows/ci.yaml --- .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..a905595 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,14 @@ +on: push +jobs: + build: + runs-on: ubuntu-latest + name: script/cibuild + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-ruby@v1 + with: + ruby-version: 2.7 + - name: build + run: script/bootstrap + - name: test + run: script/cibuild \ No newline at end of file