Merge pull request #758 from Homebrew/dependabot/bundler/logger-1.6.3 #1326
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: CI | |
on: | |
push: | |
branches: master | |
pull_request: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
platform: ["ubuntu-latest", "macos-latest"] | |
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
persist-credentials: false | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@2a18b06812b0e15bb916e1df298d3e740422c47e # v1.203.0 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run tests | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: bundle exec rake | |
- name: Run RuboCop | |
run: bundle exec rubocop -D lib/ | |
- name: Upload coverage results | |
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1 | |
with: | |
files: coverage/coverage.xml | |
disable_search: true | |
token: ${{ secrets.CODECOV_TOKEN }} |