Skip to content

build(deps): bump AWSSDK.Translate from 3.7.400.58 to 3.7.400.70 in /weather-backend #69

build(deps): bump AWSSDK.Translate from 3.7.400.58 to 3.7.400.70 in /weather-backend

build(deps): bump AWSSDK.Translate from 3.7.400.58 to 3.7.400.70 in /weather-backend #69

Workflow file for this run

name: "unit-tests"
on:
pull_request:
branches: [ main ]
jobs:
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Run api unit tests
run: dotnet test --configuration Release --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
working-directory: ./weather-test
- name: Run cli unit tests
run: dotnet test --configuration Release --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
working-directory: ./Weather.CLI.UnitTests