Skip to content

feat: unify refProcess naming and add AML base library references #2

feat: unify refProcess naming and add AML base library references

feat: unify refProcess naming and add AML base library references #2

Workflow file for this run

name: Tests
on:
push:
paths:
- 'dotnet/**'
pull_request:
paths:
- 'dotnet/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore
run: dotnet restore dotnet/
- name: Build
run: dotnet build dotnet/ --no-restore
- name: Test
run: dotnet test dotnet/ --no-build --verbosity normal