.github/workflows/ci.yml in rubocop-sorbet-0.6.11 vs .github/workflows/ci.yml in rubocop-sorbet-0.7.0
- old
+ new
@@ -9,18 +9,20 @@
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
- ruby: [ '2.5', '2.6', '2.7', '3.0', '3.1' ]
+ ruby: [ '2.5', '2.6', '2.7', '3.0', '3.1', '3.2' ]
name: Test Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Lint Ruby files
run: bin/rubocop
+ - name: Verify documentation is up to date
+ run: bundle exec rake generate_cops_documentation
- name: Run tests
run: bin/rspec