Dotnet package cleanup and reconciliation of dirs

This commit is contained in:
Xiaoyun Zhang
2024-10-02 09:14:54 -07:00
committed by Jack Gerrits
parent a862ed2382
commit 5c7498cc08
210 changed files with 331 additions and 303 deletions

View File

@@ -17,6 +17,18 @@ jobs:
working-directory: dotnet
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install jupyter and ipykernel
run: |
python -m pip install --upgrade pip
python -m pip install jupyter
python -m pip install ipykernel
- name: list available kernels
run: |
python -m jupyter kernelspec list
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
@@ -28,4 +40,4 @@ jobs:
- name: Build
run: dotnet build AutoGen.sln
- name: Test
run: dotnet test --no-build --verbosity normal AutoGen.sln
run: dotnet test --no-build --verbosity normal AutoGen.sln