Skip to content

Bump Microsoft.VisualStudio.Web.CodeGeneration.Design from 7.0.5 to 7.0.8 #42

Bump Microsoft.VisualStudio.Web.CodeGeneration.Design from 7.0.5 to 7.0.8

Bump Microsoft.VisualStudio.Web.CodeGeneration.Design from 7.0.5 to 7.0.8 #42

Workflow file for this run

name: Build
on:
pull_request:
types:
- opened
- reopened
push:
branches-ignore:
- 'master'
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['7.x']
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Unit test
run: dotnet test CsharpKioskDemoDotnet.Tests --no-restore --verbosity n
- name: Integration test
run: dotnet test CsharpKioskDemoDotnet.IntegrationTests --verbosity n