Skip to content

Commit 7911e9c

Browse files
authored
Create main.yml
1 parent e980d19 commit 7911e9c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- name: Setup .NET
19+
uses: actions/setup-dotnet@v3
20+
with:
21+
dotnet-version: "8.0.x"
22+
23+
- name: Restore dependencies
24+
run: dotnet restore
25+
working-directory: ./ValueMapper
26+
27+
- name: Build
28+
run: dotnet build --configuration Release --no-restore
29+
working-directory: ./ValueMapper

0 commit comments

Comments
 (0)