From 4c729f069e2c49a0be2ba422857700337dc3da2b Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sat, 8 Aug 2020 14:33:06 -0400 Subject: [PATCH] Separate build & test --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 98d9040..8e4c1c0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,8 +8,8 @@ jobs: - uses: actions/setup-ruby@v1 with: ruby-version: 2.7 - - name: build & test - run: | - script/bootstrap - script/cibuild + - name: build + run: script/bootstrap + - name: test + run: script/cibuild