-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 1.33 KB
/
dotnetcore.yml
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
46
name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test --no-restore --verbosity normal --logger "trx;LogFileName=test-results.trx" Nbic.References.Tests/Nbic.References.Tests.csproj -- MaxCpuCount=1 || True
- name: Test Report
uses: dorny/test-reporter@v1
if: always()
with:
name: DotNET Tests
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.ORG_DOCKER_USER }}
password: ${{ secrets.ORG_DOCKER_PASS }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image api
uses: docker/build-push-action@v5
# if: github.event.pull_request.merged == 'true' && ${{ github.actor != 'dependabot[bot]' }}
with:
# context: ./src
file: ./Nbic.References/Dockerfile
tags: artsdatabanken/nbicreferences:latest
push: true