Skip to content

Commit c5ad6e6

Browse files
authored
Merge pull request #558 from MapsterMapper/master
Merge latest from master to development
2 parents 068c174 + 862bc8b commit c5ad6e6

19 files changed

+511
-502
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This workflow will build a .NET project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+
name: Build and Test
5+
6+
on:
7+
push:
8+
branches: [ "master", "main", "development", "**" ]
9+
pull_request:
10+
branches: [ "master", "main", "development" ]
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v3
18+
with:
19+
dotnet-version: 7.0.x
20+
- name: Show dotnet version
21+
run: |
22+
dotnet --list-sdks
23+
dotnet --list-runtimes
24+
- name: Build with dotnet
25+
run: dotnet build ./src/Mapster.sln
26+
- name: Run tests on .NET 7.0
27+
run: dotnet test --verbosity normal ./src/Mapster.sln

0 commit comments

Comments
 (0)