Skip to content

Commit

Permalink
Work around ci error?
Browse files Browse the repository at this point in the history
  • Loading branch information
hakanensari committed Aug 18, 2024
1 parent 46ca11b commit 8db83e1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ jobs:
strategy:
matrix:
ruby: [3.1, 3.2, 3.3]
container:
image: ruby:${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: gem install bundler
- run: bundle install --jobs 4 --retry 3
- run: bundle exec rake
Expand All @@ -20,12 +22,15 @@ jobs:
needs: [test]
if: github.event_name == 'push'
runs-on: ubuntu-latest
container:
image: ruby:3.3
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- run: gem install bundler
- run: bundle install --jobs 4 --retry 3
- run: chown root:root .
- uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand Down

0 comments on commit 8db83e1

Please sign in to comment.