Skip to content

Commit

Permalink
CI: rename things a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
marcandre committed Jul 19, 2020
1 parent e6ba39a commit 5ddb0cc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/rubocop.yml
Expand Up @@ -8,7 +8,7 @@ on: [push, pull_request]
jobs:
ast_specs:
name: >-
${{ matrix.title || 'AST' }} | ${{ matrix.rubocop }} | ${{ matrix.ruby }} (${{ matrix.os }})
${{ matrix.title || 'Specs' }} | RuboCop: ${{ matrix.rubocop }} | ${{ matrix.ruby }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}-latest
env:
# See https://github.com/tmm1/test-queue#environment-variables
Expand All @@ -27,9 +27,9 @@ jobs:
- { os: windows, rubocop: master, ruby: mingw }
- { rubocop: '0.84.0', ruby: 2.4, os: ubuntu }
- { rubocop: '0.84.0', ruby: head, os: ubuntu }
- { rubocop: '0.84.0', ruby: 2.4, os: ubuntu, coverage: true, title: 'Cov' }
- { rubocop: master, ruby: 2.7, os: ubuntu, modern: true, title: 'Modern' }
- { rubocop: master, ruby: 2.7, os: ubuntu, internal_investigation: true, modern: true, title: 'Style' }
- { rubocop: '0.84.0', ruby: 2.4, os: ubuntu, coverage: true, title: 'Coverage' }
- { rubocop: master, ruby: 2.7, os: ubuntu, modern: true, title: 'Specs "modern"' }
- { rubocop: master, ruby: 2.7, os: ubuntu, internal_investigation: true, modern: true, title: 'Coding Style' }

steps:
- name: windows misc
Expand Down Expand Up @@ -66,18 +66,18 @@ jobs:
with:
coverageCommand: bundle exec rake spec
debug: true
- name: Set modernize mode
- name: set modernize mode
if: matrix.modern == true
run: echo '::set-env name=MODERNIZE::true'
- name: spec
if: "matrix.coverage != true && matrix.internal_investigation != true"
run: bundle exec rake spec
- name: internal_investigation
- name: internal investigation
if: matrix.internal_investigation
run: bundle exec rake internal_investigation
rubocop_specs:
name: >-
Main | ${{ matrix.rubocop }} | ${{ matrix.ruby }} (${{ matrix.os }})
Main Gem Specs | RuboCop: ${{ matrix.rubocop }} | ${{ matrix.ruby }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}-latest
env:
# See https://github.com/tmm1/test-queue#environment-variables
Expand Down

0 comments on commit 5ddb0cc

Please sign in to comment.