CodeCargo: update actions/checkout to v6.0.2 #2
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: Specs | |
| jobs: | |
| specs: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-12] | |
| ruby: [system, 2.7, 3.0.0] | |
| name: ${{ matrix.os }} / Ruby ${{ matrix.ruby }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout git | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install dependencies | |
| run: | | |
| brew install hg | |
| brew install svn | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| if: ${{ matrix.ruby != 'system' }} | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| - name: Run bundle install | |
| run: | | |
| bundle config path vendor/bundle | |
| bundle install --jobs 4 --retry 3 --without debugging documentation | |
| - name: Run Specs + Rubocop | |
| run: bundle exec rake spec | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| - "*-stable" | |
| pull_request: | |
| branches: | |
| - master | |
| - "*-stable" |