Skip to content

Commit 7999858

Browse files
authored
Merge pull request #216 from OpenGeoMetadata/ci-matrix-cleanup
Drop the faraday 1 test matrix and stop cancelling sibling legs
2 parents 06d3e1b + 6c85d74 commit 7999858

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
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/

0 commit comments

Comments
 (0)