Skip to content

chore(deps): bump Microsoft.Extensions.Hosting from 7.0.1 to 8.0.0 #38

chore(deps): bump Microsoft.Extensions.Hosting from 7.0.1 to 8.0.0

chore(deps): bump Microsoft.Extensions.Hosting from 7.0.1 to 8.0.0 #38

Workflow file for this run

name: Quality Check
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['7.0']
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dotnet-format
run: dotnet tool install -g dotnet-format
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Check Format
run: dotnet format --verify-no-changes --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal