From 3653c4a1f0f56463f300a0d554b5f2a15265431b Mon Sep 17 00:00:00 2001 From: Simon G Date: Tue, 24 Sep 2019 10:55:23 +0200 Subject: [PATCH] - add github actions ci.yml file --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..db5296a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: CI + +on: [push] + +jobs: + build: + Name: Build + runs-on: windows-latest + + steps: + - name: Checkout + - uses: actions/checkout@v1 + - name: Build + run: dotnet build + + test: + Name: Test + needs: build + runs-on: windows-latest + + steps: + - name: Run tests + run: dotnet test --no-build Test.LightweightIocContainer +