Skip to content

Commit

Permalink
[ci-cd] Fix ruby matrix setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis Lambeau committed May 26, 2023
1 parent 4a3a2b5 commit 703b0c3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.1', '3.2']
ruby-version: ['2.7', '3.1']
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
Expand All @@ -24,8 +24,16 @@ jobs:

- uses: actions/checkout@v2

- run: make jenkins-test
id: tests
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
with:
ruby-version: ${{ matrix.ruby-version }}

- id: show-ruby-version
run: ruby --version

- id: tests
run: make tests

- uses: act10ns/slack@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
webspicy (0.23.0)
webspicy (0.24.0)
finitio (>= 0.12.0, < 0.13.0)
http (~> 4.4.1)
listen (~> 3.7)
Expand Down

0 comments on commit 703b0c3

Please sign in to comment.