name: test on: push: branches: - master pull_request: branches: - "*" schedule: - cron: "0 0 * * 0" jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: ["3.3", "3.2", "3.1", "3.0"] name: Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Build and test with Rake run: | bundle exec rake