Merge pull request #288 from zeroSteiner/fix/test-runner #474
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: Verify | |
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
| permissions: | |
| actions: none | |
| checks: none | |
| contents: none | |
| deployments: none | |
| id-token: none | |
| issues: none | |
| discussions: none | |
| packages: none | |
| pages: none | |
| pull-requests: none | |
| repository-projects: none | |
| security-events: none | |
| statuses: none | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 40 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| ruby: | |
| - '2.7' | |
| - '3.0' | |
| - '3.1' | |
| - '3.2' | |
| - '3.3' | |
| - '3.4' | |
| os: | |
| - ubuntu-22.04 | |
| - ubuntu-latest | |
| exclude: | |
| - { os: ubuntu-latest, ruby: '2.7' } | |
| - { os: ubuntu-latest, ruby: '3.0' } | |
| test_cmd: | |
| - bundle exec rspec | |
| env: | |
| RAILS_ENV: test | |
| name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: ${{ matrix.test_cmd }} | |
| run: | | |
| echo "${CMD}" | |
| bash -c "${CMD}" | |
| env: | |
| CMD: ${{ matrix.test_cmd }} |