Skip to content

Package Dependencies: Bump AWSSDK.S3 from 3.7.410.1 to 3.7.410.6 #97

Package Dependencies: Bump AWSSDK.S3 from 3.7.410.1 to 3.7.410.6

Package Dependencies: Bump AWSSDK.S3 from 3.7.410.1 to 3.7.410.6 #97

name: Unit Tests
on: [pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['9.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
working-directory: PeakLims/tests/PeakLims.UnitTests
run: dotnet test --no-restore --verbosity minimal