Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza committed Apr 6, 2024
2 parents 85a7ce4 + f6355b5 commit 492bba7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
tests:
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 60
timeout-minutes: 30
strategy:
matrix:
script:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config set path 'vendor/bundle'
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -94,6 +94,7 @@ jobs:
xcode_archive_path: ${{ env.TEST_RESULTS }}
docs:
runs-on: macos-13
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
Expand All @@ -109,7 +110,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config path vendor/bundle
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-automated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Submodules and Bundle Install
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config set path 'vendor/bundle'
bundle install
- run: npm ci
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config path vendor/bundle
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-manual-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Submodules
run: |
git submodule update --init --recursive
sudo gem install bundler
sudo gem install bundler -v 2.4.22
bundle config path vendor/bundle
- name: Bundle Install
if: steps.cache-gems.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For analyzing bugs, creating bug fixes and features we recommend to clone this r
Install all dependencies:
```
git submodule update --init --recursive
gem install bundler
gem install bundler -v 2.4.22
bundle install
```
Run the tests:
Expand Down

0 comments on commit 492bba7

Please sign in to comment.