Skip to content

Commit

Permalink
Add a github action to run unit tests
Browse files Browse the repository at this point in the history
We didn't have any CI until now, so this is the bare minimum. Using the
windows build agent as it has been updated to net5.0 (unlike linux,
which is [currently in
rollout](actions/runner-images#1891 (comment))).

Note that ppy#4 should be
merged first to fix a compilation error.
  • Loading branch information
peppy committed Dec 16, 2020
1 parent fec247a commit c8d5fc9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: windows-latest
name: Unit testing
steps:
- uses: actions/checkout@v1
- run: dotnet test

0 comments on commit c8d5fc9

Please sign in to comment.