Skip to content

Handoff immutability policies, Phase 1: the policy mechanism #29

Handoff immutability policies, Phase 1: the policy mechanism

Handoff immutability policies, Phase 1: the policy mechanism #29

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.2', '3.3', '3.4']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Check code style
run: bundle exec standardrb
- name: Run tests
run: bundle exec rake