Remove Gemfile from demo/ #568
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: Ruby | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| Lint: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUNDLE_GEMFILE: gemfiles/7.2.gemfile | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.2 | |
| bundler-cache: true | |
| # Disabled since it requires access not granted by GitHub Actions for PRs | |
| # - name: Danger | |
| # if: ${{ github.event_name == 'pull_request' }} | |
| # env: | |
| # DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # run: | | |
| # bundle exec danger | |
| - name: Rubocop | |
| run: | | |
| bundle install | |
| rubocop --autocorrect | |
| Test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby-version: [ '3.4', '3.3', '3.2', 'ruby-head' ] | |
| gemfile: [ '8.1', '8.0', '7.2', 'edge' ] | |
| env: | |
| BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| bundler-cache: true | |
| - name: Run tests | |
| run: | | |
| bundle install | |
| rake test | |
| Demo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| working-directory: demo | |
| bundler-cache: true | |
| ruby-version: 3.4 | |
| - name: Run tests | |
| working-directory: demo | |
| run: | | |
| bundle install | |
| rake test:all | |
| # - name: Commit changed screenshots and other files | |
| # if: failure() | |
| # working-directory: demo | |
| # run: bundle exec rake commit | |