Sha256: faa81b26d01f7256f223867ebf1b324ac9fff38631791ed031a0506e74e3292f
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
name: Edge Tests on: - workflow_dispatch - push - pull_request jobs: local-tests: name: Local Tests runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-latest, windows-latest] ruby: [ 3.0, 3.2 ] steps: - name: Checkout source tree uses: actions/checkout@v2 - name: Set Windows resolution if: matrix.os == 'windows-latest' run: Set-DisplayResolution -Width 1920 -Height 1080 -Force - name: Set Mac resolution if: ${{ matrix.os == 'macos-latest' }} run: | system_profiler SPDisplaysDataType | grep Resolution "/Library/Application Support/VMware Tools/vmware-resolutionSet" 2560 1440 system_profiler SPDisplaysDataType | grep Resolution - name: Install Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install gems run: bundle install - name: Remove driver directories Windows if: matrix.os == 'windows-latest' run: | rm "$env:EdgeWebDriver" -r -v - name: Remove driver directories Non-Windows if: matrix.os != 'windows-latest' run: | sudo rm -rf $EDGEWEBDRIVER - name: Run tests run: bundle exec rake spec:edge
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-7.3.0 | .github/workflows/edge.yml |