Skip to content

fix https://github.com/comroid-git/clmath/issues/14 #31

fix https://github.com/comroid-git/clmath/issues/14

fix https://github.com/comroid-git/clmath/issues/14 #31

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Git Checkout
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Test
run: dotnet test common.test/common.test.csproj --verbosity normal