Skip to content

Commit

Permalink
Run tests on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzik authored May 24, 2024
1 parent 363709d commit 5ecd3dd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: .NET

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
IGNORE_NORMALISATION_GIT_HEAD_MOVE: 1

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet tool restore
- name: Build
run: dotnet cake --target AppVeyor --verbosity Diagnostic

0 comments on commit 5ecd3dd

Please sign in to comment.