Automated Releases #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby_version: ["3.0", "3.1", "3.2", "3.3"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update .ruby-version with matrix value | |
| run: echo "${{ matrix.ruby_version }}" >| .ruby-version | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@32110d4e311bd8996b2a82bf2a43b714ccc91777 # [email protected] | |
| with: | |
| bundler-cache: true | |
| - name: Run tests | |
| run: bundle exec rake |