Merge pull request #678 from Homebrew/dependabot/bundler/rexml-3.3.6 #1154
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@a6e6f86333f0a2523ece813039b8b4be04560854 # v1.190.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@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 | |
with: | |
files: coverage/coverage.xml | |
disable_search: true | |
token: ${{ secrets.CODECOV_TOKEN }} |