-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (23 loc) · 721 Bytes
/
ci.yml
File metadata and controls
31 lines (23 loc) · 721 Bytes
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
name: Build and Run Tests
on:
push:
branches:
- development
jobs:
release:
runs-on: ubuntu-latest
env:
GEMINI_KEY: ${{ secrets.GEMINI_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Restore dependencies
run: dotnet restore
- name: Build project
run: dotnet build --configuration Release --no-restore
# - name: Run tests
# run: dotnet test --filter "FullyQualifiedName~MapperIA.Tests.Mappers.ClassMapper.ClassMapperTests | FullyQualifiedName~MapperIA.Tests.Mappers.PDFMapper.PDFMapperTests"