Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Dec 11, 2024
1 parent 64da65b commit 61d6892
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,20 @@ jobs:
#
# SECTION run the test suite across a broad matrix of rubies, configs, and systems
#
ruby_versions:
outputs:
minors: ["3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
steps:
- run: echo "generating rubies ..."

linux:
needs: ["basic"]
needs: ["basic", "ruby_versions"]
strategy:
fail-fast: false
matrix:
sys: ["enable", "disable"]
ruby: ["3.1", "3.2", "3.3"]
ruby: ${{ needs.ruby_versions.minors }}
runs-on: ubuntu-latest
container:
image: ghcr.io/sparklemotion/nokogiri-test:mri-${{matrix.ruby}}
Expand Down

0 comments on commit 61d6892

Please sign in to comment.