Skip to content

Add comment about set_size being a no-op #33

Add comment about set_size being a no-op

Add comment about set_size being a no-op #33

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: Tests
runs-on: macos-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: install gems in packaging dir
uses: ruby/setup-ruby@v1
with:
working-directory: packaging
bundler-cache: true
- name: Print out Bundler environment
run: bundle exec gem env
- name: Run tests
run: bundle exec rake test