Skip to content

Commit

Permalink
feat(CI): add Ruby based mdl (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton authored Jan 10, 2021
1 parent 88782ad commit 5f099f9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,18 @@ jobs:
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rubocop
mdl:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.6', '2.7']
name: β˜• Markdownlint Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec mdl .

0 comments on commit 5f099f9

Please sign in to comment.