Skip to content

Commit

Permalink
CI: Test with Ruby versions up to 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bquorning committed Oct 30, 2024
1 parent c60f37a commit 15b5bf3
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
strategy:
matrix:
ruby:
- 3.3
- 3.2
- 3.1
- '3.0'
- 2.7
- 2.6
- 2.5
Expand All @@ -24,14 +28,13 @@ jobs:
- ':27.'
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: install bundler
run: |
gem install bundler -v '~> 1.17.3'
bundle update
bundler-cache: true
- name: Update gems
run: bundle update
- name: install docker
env:
DOCKER_VERSION: ${{ matrix.docker_version }}
Expand Down Expand Up @@ -61,20 +64,23 @@ jobs:
strategy:
matrix:
ruby:
- 3.3
- 3.2
- 3.1
- '3.0'
- 2.7
- 2.6
- 2.5
- 2.4
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: install bundler
run: |
gem install bundler -v '~> 1.17.3'
bundle update
bundler-cache: true
- name: Update gems
run: bundle update
- name: install podman
run: sudo ./script/install_podman.sh
- name: spec tests
Expand Down

0 comments on commit 15b5bf3

Please sign in to comment.