File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+
3+ version : 2
4+ updates :
5+ - package-ecosystem : " nuget"
6+ directory : " /"
7+ schedule :
8+ interval : " weekly"
9+ groups :
10+ efcore :
11+ patterns :
12+ - " Microsoft.EntityFrameworkCore*"
13+ - package-ecosystem : " github-actions"
14+ directory : " /"
15+ schedule :
16+ interval : " weekly"
Original file line number Diff line number Diff line change 1+ # Building and testing .NET
2+ # https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+ name : .NET CI
5+
6+ on :
7+ push :
8+ branches : [ "master" ]
9+ pull_request :
10+ branches : [ "master" ]
11+
12+ jobs :
13+
14+ build :
15+ runs-on : ubuntu-latest
16+ steps :
17+
18+ - name : Checkout repository
19+ uses : actions/checkout@v4
20+
21+ - name : Set up .NET 8
22+ uses : actions/setup-dotnet@v4
23+ with :
24+ dotnet-version : 8.0.x
25+
26+ - name : Restore dependencies
27+ run : dotnet restore
28+
29+ - name : Build projects
30+ run : dotnet build --no-restore
You can’t perform that action at this time.
0 commit comments