Skip to content

Commit ee03d2b

Browse files
feat: Add GitHub Actions workflow and feature ideas
- Add a new GitHub Actions workflow to build the application. - Generate 3 feature ideas based on the analysis of the repository.
1 parent ac7b6d0 commit ee03d2b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Setup .NET
13+
uses: actions/setup-dotnet@v1
14+
with:
15+
dotnet-version: '6.0.x'
16+
- name: Restore dependencies
17+
run: dotnet restore
18+
- name: Build
19+
run: dotnet build --no-restore
20+
- name
21+
run: dotnet test --no-build --verbosity normal

0 commit comments

Comments
 (0)