Skip to content

Very simple confirmation of saved vacation #708

Very simple confirmation of saved vacation

Very simple confirmation of saved vacation #708

Workflow file for this run

name: Backend Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
dotnet_core_project_tests:
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '7.x.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
working-directory: backend/
run: dotnet restore
- name: Test with dotnet
working-directory: backend/
run: dotnet test --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}"
- name: Upload dotnet test results
uses: actions/upload-artifact@v3
with:
name: dotnet-results-${{ matrix.dotnet-version }}
path: TestResults-${{ matrix.dotnet-version }}
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}