Skip to content

dotnet 9.0 migration #15

dotnet 9.0 migration

dotnet 9.0 migration #15

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.301
- name: Install dependencies
run: dotnet restore ./dotnet_ECommerce/dotnet_ECommerce.sln
- name: Build
run: dotnet build ./dotnet_ECommerce/dotnet_ECommerce.sln --configuration Release
- name: Test
run: dotnet test ./dotnet_ECommerce/dotnet_ECommerce.sln --configuration Release