Skip to content

Commit

Permalink
use test matrix to avoid crashing combinations
Browse files Browse the repository at this point in the history
memcached gem dumps core on ubuntu 22.04
  • Loading branch information
skaes committed Oct 8, 2024
1 parent 6a12e6e commit fd2d2d8
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ on:
jobs:
test:

runs-on: ubuntu-latest

strategy:
matrix:
ruby-version: [3.3.4, 3.2.5, 3.1.6]
include:
- os: ubuntu-latest
ruby-version: 3.3.5
- os: ubuntu-20.04
ruby-version: 3.2.5
- os: ubuntu-20.04
ruby-version: 3.1.6

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit fd2d2d8

Please sign in to comment.