Sha256: e2ddc09630eb6ddb8732fc07b0d1549e73bf5143368a00bd602ba74d849d035a

Contents?: true

Size: 693 Bytes

Versions: 2

Compression:

Stored size: 693 Bytes

Contents

name: IE Tests

on:
  - workflow_dispatch
  - push
  - pull_request

jobs:
  local-tests:
    name: Local Tests
    runs-on: windows-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [ 2.7, 3.2 ]
    steps:
      - name: Checkout source tree
        uses: actions/checkout@v2
      - name: Set Windows resolution
        run: Set-DisplayResolution -Width 1920 -Height 1080 -Force
      - 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:ie
        env:
          GITHUB_TOKEN: ${{ github.token }}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
watir-7.2.2 .github/workflows/ie.yml
watir-7.2.1 .github/workflows/ie.yml