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