Skip to content

fix: FIR-36807 command timeout parameter is not working in net (#106) #124

fix: FIR-36807 command timeout parameter is not working in net (#106)

fix: FIR-36807 command timeout parameter is not working in net (#106) #124

Workflow file for this run

# This workflow will install Python dependencies, run pre-commit checks, and run tests with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit tests
on:
workflow_call:
push:
branches: [ main, 0.x ]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up .NET 6.0
id: dotnet-setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0
- name: use .NET 6.0
run: |
dotnet new globaljson --sdk-version '${{ steps.dotnet-setup.outputs.dotnet-version }}'
- name: Install dependencies
run: |
dotnet restore
- name: Run unit tests
run: |
dotnet test --filter "Category!=Integration"