.github/workflows/macos.yml in textbringer-1.3.0 vs .github/workflows/macos.yml in textbringer-1.4.1

- old
+ new

@@ -1,16 +1,23 @@ name: macos on: [push] jobs: - build: + test: runs-on: macos-latest + strategy: + matrix: + ruby: [ head, 3.3 ] timeout-minutes: 10 + env: + RUBYOPT: --enable-frozen-string-literal --debug-frozen-string-literal steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: | - gem install bundler --no-document bundle install - name: Run test run: bundle exec rake test