remove dotnet-build-test-packages.yml (#3807)

Authored-by: luongdavid <luongdavid@microsoft.com>
This commit is contained in:
David Luong 2024-10-16 13:28:17 -04:00 committed by GitHub
parent 0560bdd645
commit caea7b068c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 45 deletions

View File

@ -1,45 +0,0 @@
name: '[AutoGen nuget] Build and test'
on:
workflow_call:
push:
branches:
- main
- staging
pull_request:
branches:
- main
- staging
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
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:
dotnet-version: 8.0.x
- name: Install .NET Aspire workload
run: dotnet workload install aspire
- name: Restore dependencies
run: dotnet restore AutoGen.sln
- name: Build
run: dotnet build AutoGen.sln
- name: Test
run: dotnet test --no-build --verbosity normal AutoGen.sln