-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.49 KB
/
api-ci.yml
File metadata and controls
51 lines (42 loc) · 1.49 KB
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
47
48
49
50
51
name: API Build and Test
on:
push:
branches: [ main ]
paths:
- 'src/WarehouseEngine.Api/**'
- 'src/WarehouseEngine.Domain/**'
- 'src/WarehouseEngine.Application/**'
- 'src/WarehouseEngine.Infrastructure/**'
pull_request:
branches: [ main ]
paths:
- 'src/WarehouseEngine.Api/**'
- 'src/WarehouseEngine.Domain/**'
- 'src/WarehouseEngine.Application/**'
- 'src/WarehouseEngine.Infrastructure/**'
jobs:
api-build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
include-prerelease: true
- name: Restore API dependencies
run: dotnet restore src/WarehouseEngine.Api/WarehouseEngine.Api.csproj
- name: Build API project
run: dotnet build src/WarehouseEngine.Api/WarehouseEngine.Api.csproj --configuration Release --no-restore
- name: Run API-related tests
run: |
dotnet test tests/WarehouseEngine.Domain.Tests/WarehouseEngine.Domain.Tests.csproj --configuration Release --verbosity normal
- name: Publish API
run: dotnet publish src/WarehouseEngine.Api/WarehouseEngine.Api.csproj --configuration Release --no-build --output ./api-dist
- name: Upload API artifacts
uses: actions/upload-artifact@v4
with:
name: api-build
path: ./api-dist/
retention-days: 7