aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/back-ci.yaml
blob: c4e45872c7cbb765ec58d4b8d6d3c8238bf8567d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Back End CI

on:
  push:
    branches: [master]
    paths-ignore:
      - "Timeline/ClientApp/**"
  pull_request:
    branches: [master]
    paths-ignore:
      - "Timeline/ClientApp/**"

jobs:
  build:
    name: Build And Test
    runs-on: ubuntu-latest
    env:
      ASPNETCORE_ENVIRONMENT: "Development"
      NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages

    steps:
      - uses: actions/checkout@v2

      - name: Restore Cache
        uses: actions/cache@v2
        with:
          path: ${{ env.NUGET_PACKAGES }}
          key: nuget-${{ runner.os }}-${{ hashFiles('**/packages.lock.json') }}
          restore-keys: |
            nuget-${{ runner.os }}-

      - name: Use .Net Core 3.1.x
        uses: actions/setup-dotnet@v1
        with:
          dotnet-version: "3.1.x"

      - name: Build And Test
        run: dotnet test --logger html --collect:"XPlat Code Coverage" --settings './Timeline.Tests/coverletArgs.runsettings'

      - name: Upload Test Artifact
        uses: actions/upload-artifact@v2
        if: ${{ success() || failure() }}
        with:
          name: test-result
          path: Timeline.Tests/TestResults/