-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 1.18 KB
/
dotnet.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
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches:
- "master"
- "develop"
pull_request:
branches:
- "master"
- "develop"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '6.0.x', '7.0.x', '8.0.x' ]
env:
working-directory: ./Dapper.CustomTypeHandlers
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Display dotnet version
run: dotnet --version
- name: Restore dependencies
run: dotnet restore
working-directory: ${{env.working-directory}}
- name: Build the project
run: dotnet build --configuration Release --no-restore
working-directory: ${{env.working-directory}}
- name: Run test
run: dotnet test --configuration Release --no-build --verbosity normal
working-directory: ${{env.working-directory}}