Skip to content

Commit 5ecd3dd

Browse files
authored
Run tests on GitHub Actions
1 parent 363709d commit 5ecd3dd

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/dotnet.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: .NET
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
11+
DOTNET_CLI_TELEMETRY_OPTOUT: true
12+
IGNORE_NORMALISATION_GIT_HEAD_MOVE: 1
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v4
21+
with:
22+
dotnet-version: 8.0.x
23+
- name: Restore dependencies
24+
run: dotnet tool restore
25+
- name: Build
26+
run: dotnet cake --target AppVeyor --verbosity Diagnostic

0 commit comments

Comments
 (0)