deps: bump Carter from 8.2.0 to 8.2.1 in /Content/tests #298
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build Source | |
run: dotnet build Content/src/CarterService.csproj -v quiet --configuration Release | |
- name: Build Tests | |
run: dotnet build Content/src/CarterService.csproj -v quiet --configuration Release | |
- name: Test | |
run: dotnet test Content/tests/CarterService.Tests.csproj -v quiet --configuration Release | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 |