File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 test :
1919 runs-on : ubuntu-latest
2020 strategy :
21+ fail-fast : false # One failing Ruby shouldn't cancel the others
2122 matrix :
2223 ruby : [3.2, 3.3, 3.4]
23- faraday_version : ['', '~> 1.0'] # Defaults to whatever's the most recent version.
2424 steps :
2525 - uses : actions/checkout@v6
2626
@@ -29,16 +29,12 @@ jobs:
2929 with :
3030 ruby-version : ${{ matrix.ruby }}
3131 bundler-cache : true
32- env :
33- FARADAY_VERSION : ${{ matrix.faraday_version }}
3432
35- - name : " Run tests for Ruby ${{ matrix.ruby }} and Faraday ${{ matrix.faraday_version == '~> 1.0' && '1.x' || 'latest' }} "
33+ - name : " Run tests for Ruby ${{ matrix.ruby }}"
3634 run : bundle exec rake spec
37- env :
38- FARADAY_VERSION : ${{ matrix.faraday_version }}
3935
4036 - name : Upload coverage artifacts
4137 uses : actions/upload-artifact@v6
4238 with :
43- name : " coverage-${{ matrix.ruby }}-${{ matrix.faraday_version == '~> 1.0' && 'faraday-1.x' || 'faraday-latest' }} "
39+ name : " coverage-${{ matrix.ruby }}"
4440 path : coverage/
You can’t perform that action at this time.
0 commit comments