Skip to content

build(deps): bump AWSSDK.SecurityToken from 3.7.401.7 to 3.7.401.19 in /weather-backend #68

build(deps): bump AWSSDK.SecurityToken from 3.7.401.7 to 3.7.401.19 in /weather-backend

build(deps): bump AWSSDK.SecurityToken from 3.7.401.7 to 3.7.401.19 in /weather-backend #68

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