Skip to content

Commit

Permalink
Merge pull request treasure-data#148 from treasure-data/ci-fix-error
Browse files Browse the repository at this point in the history
Fix CI failure concerned with Ruby version
  • Loading branch information
ashie authored Sep 3, 2024
2 parents a9dda26 + fcbd7d1 commit 9db1065
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 50 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/linux.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing on Ubuntu
name: Test
on:
push:
branches: [master]
Expand All @@ -11,20 +11,17 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ '3.2', '3.1', '3.0', '2.7' ]
os:
- ubuntu-latest
name: Unit testing with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
ruby: [ '3.3', '3.2', '3.1', '3.0', '2.7' ]
os: ['ubuntu-latest', 'windows-latest']
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem install bundler rake
bundle install --jobs 4 --retry 3
run: bundle install --jobs 4 --retry 3
- name: Run tests
env:
CI: true
Expand Down
42 changes: 0 additions & 42 deletions .github/workflows/windows.yml

This file was deleted.

0 comments on commit 9db1065

Please sign in to comment.