Skip to content

Bump Selenium.Support from 4.12.4 to 4.14.1 #150

Bump Selenium.Support from 4.12.4 to 4.14.1

Bump Selenium.Support from 4.12.4 to 4.14.1 #150

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
shell: pwsh
jobs:
build-and-test:
name: build-and-test on ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
7.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -p:ContinuousIntegrationBuild=True --no-restore --configuration Release
- uses: nanasess/setup-chromedriver@v2
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
automerge:
needs: [build-and-test]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/[email protected]