Skip to content

Commit dc52ddd

Browse files
authoredNov 18, 2022
Create build.yml
add build.yml for automatic building
1 parent 69891e9 commit dc52ddd

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
 

‎.github/workflows/build.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
name: build on ubuntu
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os: [ubuntu-latest, windows-latest, macos-latest]
17+
steps:
18+
- uses: actions/checkout@v3
19+
20+
- name: Setup .NET
21+
uses: actions/setup-dotnet@v3
22+
with:
23+
dotnet-version: 6.0.x
24+
25+
- name: build project
26+
run: dotnet build
27+
working-directory: ./dotnet-estimation
28+
29+
- name: Restore dependencies
30+
run: dotnet restore
31+
working-directory: ./dotnet-estimation

0 commit comments

Comments
 (0)
Please sign in to comment.