Bump rexml from 3.3.9 to 3.4.2 (#37) #89
This file contains hidden or 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: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Ruby 2.7 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.0.2 | |
| - name: Cache Gems | |
| uses: actions/cache@v4.3.0 | |
| with: | |
| path: vendor/bundle | |
| key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
| restore-keys: ${{ runner.os }}-gems- | |
| - name: Build | |
| run: | | |
| gem install bundler | |
| bundle install | |
| - name: Static analysis | |
| run: bundle exec rubocop | |
| - name: Run tests | |
| run: bundle exec rspec --format documentation |