Merge pull request #533 from x-govuk/dependabot/bundler/slim_lint-tw-… #860
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
rspec: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ['3.1.6', '3.2.4', '3.3.4'] | |
rails: ['6.1.7', '7.0.8', '7.1.3'] | |
runs-on: ubuntu-latest | |
name: Testing with Ruby ${{ matrix.ruby }} and Rails ${{ matrix.rails }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install gems | |
env: | |
RAILS_VERSION: ${{ matrix.rails }} | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
- name: Run RSpec | |
env: | |
SIMPLECOV: '0' | |
run: make rspec | |
quality-checks: | |
runs-on: ubuntu-latest | |
name: Code quality, test coverage and documentation checks | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1.6' | |
- name: Install gems | |
env: | |
RAILS_VERSION: '7.0.8' | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
- name: Run Rubocop | |
run: make ruby-lint | |
- name: Download CodeClimate reporter | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
run: | | |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | |
chmod +x ./cc-test-reporter | |
./cc-test-reporter before-build | |
- name: Run RSpec | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
SIMPLECOV: '1' | |
run: make rspec | |
- name: Report coverage to CodeClimate | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
GIT_BRANCH: ${{ steps.extract_branch.outputs.branch }} | |
GIT_COMMIT_SHA: ${{ github.sha }} | |
run: ./cc-test-reporter after-build -t simplecov | |
- name: Run Nanoc Check | |
run: make nanoc-check-all | |
- name: Run Guide Check | |
run: make slim-lint | |
permit-merge: | |
name: Permit merge | |
needs: [rspec, quality-checks] | |
runs-on: ubuntu-latest | |
steps: | |
- run: "echo 'All checks passed ✅'" |