Skip to content

Update unitTests.yml #17

Update unitTests.yml

Update unitTests.yml #17

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: Set E2E_TESTING environment variable
run: echo "E2E_TESTING=0" >> $GITHUB_ENV
- name: Build
run: |
dotnet restore
dotnet build -clp:ErrorsOnly -- no-restore
- name: Run unit tests
run: |
dotnet test --no-restore --no-build ./CSharp.OpenSource.LinqToKql.Test