Skip to content

Commit

Permalink
Add Github Actions tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cooolbros committed Apr 11, 2022
1 parent 011c633 commit 2f77b22
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: tests

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

jobs:
test:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install .NET Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x

- name: Run Unit Tests
run: dotnet test src\hud-merger.sln

0 comments on commit 2f77b22

Please sign in to comment.