-
Notifications
You must be signed in to change notification settings - Fork 0
142 lines (110 loc) · 3.17 KB
/
ci.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
name: CI for C# API with Python Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
api:
image: mcr.microsoft.com/dotnet/aspnet:8.0
ports:
- 3000:3000
env:
ASPNETCORE_ENVIRONMENT: Development
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
- name: Install EF Core tools globally
run: |
dotnet tool install --global dotnet-ef
- name: Install dependencies
run: dotnet restore CargoHub
- name: Build API
run: dotnet build CargoHub --no-restore
- name: Add and apply EF migrations
run: |
cd CargoHub # Navigate to the project folder (if not in root)
dotnet ef migrations add setup
dotnet ef database update
unit-tests:
runs-on: ubuntu-latest
services:
api:
image: mcr.microsoft.com/dotnet/aspnet:8.0
ports:
- 3000:3000
env:
ASPNETCORE_ENVIRONMENT: Development
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
- name: Install EF Core tools globally
run: |
dotnet tool install --global dotnet-ef
- name: Install dependencies
run: dotnet restore CargoHub
- name: Build API
run: dotnet build CargoHub --no-restore
- name: Add and apply EF migrations
run: |
cd CargoHub # Navigate to the project folder (if not in root)
dotnet ef migrations add setup
dotnet ef database update
- name: Install test dependencies
run: dotnet restore UnitTest
- name: Start testing
run: |
cd UnitTest
dotnet test
integration-tests:
runs-on: ubuntu-latest
services:
api:
image: mcr.microsoft.com/dotnet/aspnet:8.0
ports:
- 3000:3000
env:
ASPNETCORE_ENVIRONMENT: Development
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0'
- name: Install EF Core tools globally
run: |
dotnet tool install --global dotnet-ef
- name: Install dependencies
run: dotnet restore CargoHub
- name: Build API
run: dotnet build CargoHub --no-restore
- name: Add and apply EF migrations
run: |
cd CargoHub # Navigate to the project folder (if not in root)
dotnet ef migrations add setup
dotnet ef database update
- name: Start API
run: |
cd CargoHub # Navigate to the project folder (if not in root)
dotnet run &
sleep 15 # wait for API to start
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12.6'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install requests pytest
- name: Run integration tests
env:
API_URL: http://localhost:3000
run: pytest Tests