main
 1name: CI
 2on:
 3  push:
 4    branches: [ "main" ]
 5  pull_request:
 6    branches: [ "main" ]
 7permissions:
 8  contents: read
 9jobs:
10  test:
11    runs-on: ubuntu-latest
12    strategy:
13      matrix:
14        ruby-version: ['3.4']
15    steps:
16    - uses: actions/checkout@v4
17    - uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
18      with:
19        ruby-version: ${{ matrix.ruby-version }}
20        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
21    - run: sh bin/test