Skip to content

table and collection control #26

table and collection control

table and collection control #26

Workflow file for this run

name: .NET
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore src/Selenium.Essentials/Selenium.Essentials.sln
- name: Build
run: dotnet build src/Selenium.Essentials/Selenium.Essentials.sln --no-restore
- name: Test
run: dotnet test test/Selenium.Essentials.UnitTests/Selenium.Essentials.UnitTests.csproj --no-build --verbosity normal