FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
NuExt.System.Data/.github/workflows/ci.yml at main · nu-ext/NuExt.System.Data · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nu-ext
/
NuExt.System.Data
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
NuExt.System.Data
/
.github
/
workflows
/
ci.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
40 lines (31 loc) · 955 Bytes
Breadcrumbs
NuExt.System.Data
/
.github
/
workflows
/
ci.yml
Copy path
File metadata and controls
40 lines (31 loc) · 955 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name
:
CI
on
:
push
:
branches
:
[ main ]
pull_request
:
branches
:
[ main ]
jobs
:
build_test
:
runs-on
:
windows-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v7
-
name
:
Setup .NET SDK
uses
:
actions/setup-dotnet@v6
with
:
dotnet-version
:
'
10.0.x
'
-
name
:
Show dotnet info
run
:
dotnet --info
-
name
:
Cache NuGet packages
uses
:
actions/cache@v6
with
:
path
:
~/.nuget/packages
key
:
nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj', '**/Directory.Packages.props', '**/global.json', '**/nuget.config') }}
restore-keys
:
|
nuget-${{ runner.os }}-
-
name
:
Restore
run
:
dotnet restore --nologo
-
name
:
Build (Release)
run
:
dotnet build --configuration Release --nologo -warnaserror
-
name
:
Test (Release)
run
:
dotnet test --configuration Release --nologo --no-build
Back
|
FazBrowse Home
|
New Git URL