.github/workflows/rake.yml in cuco-0.0.7 vs .github/workflows/rake.yml in cuco-0.1.0
- old
+ new
@@ -8,17 +8,24 @@
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ["3.0", 3.3]
- test_command: ["bundle exec rake test"]
+ test_command: ["bundle exec rake"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- bundler-cache: true
- - name: Build and test with Rake
- run: bundle exec rake
+# bundler-cache: true
+# - name: Build and test with Rake
+# run: bundle exec rake
+ - name: Bundle install
+ run: |
+ bundle config path /home/runner/bundle
+ bundle install
+ bundle update
+ - name: test with Rake
+ run: ${{ matrix.test_command }}