Skip to content

Commit 1dc5699

Browse files
committed
Add workflow
1 parent 55038e3 commit 1dc5699

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: main
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- name: Setup .NET
11+
uses: actions/setup-dotnet@v3
12+
with:
13+
dotnet-version: 7.0.x
14+
- name: Restore dependencies
15+
run: dotnet restore
16+
- name: Build
17+
run: dotnet build --no-restore

0 commit comments

Comments
 (0)