summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-05-17 16:46:13 -0600
committermo khan <mo.khan@gmail.com>2020-05-17 16:46:13 -0600
commitfc77315695ae643b8a528abc10b34c8c5a6fcfdf (patch)
tree5fa77aa5eec80b08dc3f4b44bea9f4569e38fbb8
parent8dcad67eb29d7507cff1d950e643cc9bfdac4641 (diff)
Lint job
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 13 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a789bd7..fa43847 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
ruby: [ '2.5', '2.6', '2.7' ]
- name: Ruby ${{ matrix.ruby }}
+ name: RSpec Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
with:
@@ -17,10 +17,18 @@ jobs:
ruby-version: ${{ matrix.ruby }}
- name: setup
run: ./bin/setup
- - name: integration
- run: ./bin/test spec/integration
- - name: unit
- run: ./bin/test spec/unit
+ - name: test
+ run: ./bin/test
+ lint:
+ runs-on: ubuntu-latest
+ name: Lint
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ lfs: true
+ submodules: recursive
+ - name: setup
+ run: ./bin/setup
- name: lint
run: ./bin/lint
docker: