Lock standard dependency to >= 1.35.1 #118
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, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
ruby: ["3.1", "3.2", "3.3"] | |
runs-on: ubuntu-latest | |
environment: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Set up Code Climate test reporter | |
run: | | |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | |
chmod +x ./cc-test-reporter | |
- name: Before build | |
run: ./cc-test-reporter before-build | |
- name: Run tests | |
run: bundle exec rake test | |
- name: After build | |
if: always() # Ensures that this step runs even if the test step fails | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
run: | | |
EXIT_CODE=${{ job.status == 'success' && '0' || '1' }} | |
./cc-test-reporter after-build --exit-code $EXIT_CODE -t simplecov |