diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-17 16:46:13 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-17 16:46:13 -0600 |
| commit | fc77315695ae643b8a528abc10b34c8c5a6fcfdf (patch) | |
| tree | 5fa77aa5eec80b08dc3f4b44bea9f4569e38fbb8 /.github | |
| parent | 8dcad67eb29d7507cff1d950e643cc9bfdac4641 (diff) | |
Lint job
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 18 |
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: |
