Sha256: 05fca4f482aa04af60e0dbb1141aeef1e84b9bfaf0214856a2bdb56a775c4c97
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 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: [ 2.7, 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: Run tests run: bundle exec rake spec:chrome
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
watir-7.2.2 | .github/workflows/edge.yml |
watir-7.2.1 | .github/workflows/edge.yml |