Add dockerize option, make pending_connection_errors false by default, fix build #720
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| name: Tests | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"] | |
| runs-on: ubuntu-latest | |
| env: | |
| FERRUM_PROCESS_TIMEOUT: 25 | |
| FERRUM_DEFAULT_TIMEOUT: 15 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Setup Chrome | |
| uses: browser-actions/setup-chrome@latest | |
| with: | |
| chrome-version: stable | |
| - name: Fix GA Chrome Permissions | |
| run: | | |
| SANDBOX=$(find /opt/hostedtoolcache/setup-chrome -name "chrome-sandbox" 2>/dev/null | head -n 1) | |
| if [ -n "$SANDBOX" ]; then | |
| sudo chown root:root "$SANDBOX" | |
| sudo chmod 4755 "$SANDBOX" | |
| echo "Fixed permissions for: $SANDBOX" | |
| else | |
| echo "chrome-sandbox not found" | |
| fi | |
| - name: Run tests | |
| run: | | |
| mkdir -p /tmp/ferrum | |
| bundle exec rake | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ failure() }} | |
| with: | |
| name: artifacts-ruby-v${{ matrix.ruby }} | |
| path: /tmp/ferrum/ |