Skip to content

Update unitTests.yml #21

Update unitTests.yml

Update unitTests.yml #21

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
UnitTests:
runs-on: ubuntu-latest
name: Unit Tests
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Restore
run: dotnet restore ./CSharp.OpenSource.LinqToKql.Test
- name: Build
run: dotnet build -clp:ErrorsOnly --no-restore ./CSharp.OpenSource.LinqToKql.Test
- name: Run unit tests
run: dotnet test --no-restore --no-build ./CSharp.OpenSource.LinqToKql.Test