Skip to content

Commit ab0a333

Browse files
committed
Initial commit with consolidated changes
0 parents  commit ab0a333

File tree

21 files changed

+1238
-0
lines changed

21 files changed

+1238
-0
lines changed

.github/workflows/build.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: "Build"
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths-ignore:
8+
- '**/*.md'
9+
- '**/*.gitignore'
10+
- '**/*.gitattributes'
11+
pull_request:
12+
branches:
13+
- main
14+
paths-ignore:
15+
- '**/*.md'
16+
- '**/*.gitignore'
17+
- '**/*.gitattributes'
18+
workflow_dispatch:
19+
branches:
20+
- main
21+
paths-ignore:
22+
- '**/*.md'
23+
- '**/*.gitignore'
24+
- '**/*.gitattributes'
25+
26+
jobs:
27+
build:
28+
name: Build
29+
runs-on: ubuntu-latest
30+
env:
31+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
32+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
33+
DOTNET_NOLOGO: true
34+
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
35+
DOTNET_ADD_GLOBAL_TOOLS_TO_PATH: false
36+
DOTNET_MULTILEVEL_LOOKUP: 0
37+
defaults:
38+
run:
39+
working-directory: src/Deck.Surf
40+
41+
steps:
42+
- uses: actions/checkout@v2
43+
44+
- name: Setup .NET Core SDK
45+
uses: actions/setup-dotnet@v1.8.1
46+
with:
47+
dotnet-version: 5.0.x
48+
49+
- name: Restore
50+
run: dotnet restore
51+
52+
- name: Build
53+
run: dotnet build --configuration Release --no-restore

0 commit comments

Comments
 (0)